-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path860.柠檬水找零.js
57 lines (54 loc) · 1.01 KB
/
860.柠檬水找零.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
56
/*
* @lc app=leetcode.cn id=860 lang=javascript
*
* [860] 柠檬水找零
*/
// @lc code=start
/**
* @param {number[]} bills
* @return {boolean}
*/
var lemonadeChange = function(bills) {
/*
5 5 5 10 20
i
5 5 10
*/
// 简单暴力法
// let has = {
// '5': 0,
// '10': 0,
// '20': 0
// }
// for (let i = 0; i < bills.length; i++) {
// if (bills[i] === 5) {
// has['5']++
// } else if (bills[i] === 10) {
// if (has['5'] > 0) {
// has['5']--
// has['10']++
// } else {
// return false
// }
// } else if (bills[i] === 20) {
// if (has['5'] === 0) {
// return false
// } else {
// if (has['10'] === 0) {
// if (has['5'] >= 3) {
// has['5'] -= 3
// has['20']++
// } else {
// return false
// }
// } else {
// has['10']--
// has['5']--
// }
// }
// }
// }
// return true
//
};
// @lc code=end