Skip to content

Commit fc896ed

Browse files
BarklimBarklim
authored andcommitted
Create 2529.js
1 parent 19fec7c commit fc896ed

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

example/Dayly/2529.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/**
2+
* @param {number[]} nums
3+
* @return {number}
4+
*/
5+
var maximumCount = function(nums) {
6+
7+
};
8+
9+
const example1 = maximumCount([-2,-1,-1,1,2,3]); // 3
10+
const example2 = maximumCount([-3,-2,-1,0,0,1,2]); // 3
11+
const example3 = maximumCount([5,20,66,1314]); // 4
12+
13+
console.log(example1);
14+
console.log(example2);
15+
console.log(example3);

0 commit comments

Comments
 (0)