-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.ts
40 lines (36 loc) · 1.14 KB
/
Solution.ts
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
class Bank {
balance: number[];
constructor(balance: number[]) {
this.balance = balance;
}
transfer(account1: number, account2: number, money: number): boolean {
if (
account1 > this.balance.length ||
account2 > this.balance.length ||
money > this.balance[account1 - 1]
)
return false;
this.balance[account1 - 1] -= money;
this.balance[account2 - 1] += money;
return true;
}
deposit(account: number, money: number): boolean {
if (account > this.balance.length) return false;
this.balance[account - 1] += money;
return true;
}
withdraw(account: number, money: number): boolean {
if (account > this.balance.length || money > this.balance[account - 1]) {
return false;
}
this.balance[account - 1] -= money;
return true;
}
}
/**
* 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)
*/