Skip to content

Commit 5b4233b

Browse files
committed
add js
1 parent f508962 commit 5b4233b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

javascript/0904-fruit-into-baskets.js

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/**
2+
* @param {number[]} fruits
3+
* @return {number}
4+
*/
5+
var totalFruit = function (fruits) {
6+
let count = new Map();
7+
let [left, total, res] = [0, 0, 0];
8+
9+
for (fruit of fruits) {
10+
count.set(fruit, (count.get(fruit) || 0) + 1);
11+
total++;
12+
13+
while (count.size > 2) {
14+
let f = fruits[left];
15+
count.set(f, count.get(f) - 1);
16+
total -= 1;
17+
left += 1;
18+
if (!count.get(f)) {
19+
count.delete(f);
20+
}
21+
}
22+
res = Math.max(res, total);
23+
}
24+
25+
return res;
26+
};

0 commit comments

Comments
 (0)