forked from AnasImloul/Leetcode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimple Bank System.js
55 lines (51 loc) · 1.27 KB
/
Simple Bank System.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/**
* @param {number[]} balance
*/
var Bank = function(balance) {
this.arr = balance;
};
/**
* @param {number} account1
* @param {number} account2
* @param {number} money
* @return {boolean}
*/
Bank.prototype.transfer = function(account1, account2, money) {
if (this.arr[account1-1] >= money && this.arr.length >= account1 && this.arr.length >= account2) {
this.arr[account1-1] -= money;
this.arr[account2-1] += money;
return true;
}
return false;
};
/**
* @param {number} account
* @param {number} money
* @return {boolean}
*/
Bank.prototype.deposit = function(account, money) {
if (this.arr.length >= account) {
this.arr[account-1] += money;
return true;
}
return false;
};
/**
* @param {number} account
* @param {number} money
* @return {boolean}
*/
Bank.prototype.withdraw = function(account, money) {
if (this.arr.length >= account && this.arr[account-1] >= money) {
this.arr[account-1] -= money
return true;
}
return false;
};
/**
* Your Bank object will be instantiated and called as such:
* var obj = new Bank(balance)
* var param_1 = obj.transfer(account1,account2,money)
* var param_2 = obj.deposit(account,money)
* var param_3 = obj.withdraw(account,money)
*/