Skip to content

Commit a1e5179

Browse files
authored
Update Solution.ts
1 parent 608852a commit a1e5179

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solution/1300-1399/1399.Count Largest Group/Solution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
function countLargestGroup(n: number): number {
2-
const cnt: number[] = new Array(40).fill(0);
2+
const cnt: number[] = Array(40).fill(0);
33
let mx = 0;
44
let ans = 0;
55
for (let i = 1; i <= n; ++i) {

0 commit comments

Comments
 (0)