Skip to content

Commit 22828da

Browse files
committed
Runtime: 1 ms (Top 99.97%) | Memory: 46.2 MB (Top 98.87%)
1 parent 56b3ccb commit 22828da

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

scripts/algorithms/C/Counting Bits/Counting Bits.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
// Runtime: 1 ms (Top 99.97%) | Memory: 46.2 MB (Top 98.87%)
2+
13
class Solution {
2-
3-
4+
45
public void count(int n, int[] a, int k)
56
{
67
int i;
@@ -16,4 +17,4 @@ public int[] countBits(int n) {
1617
count(n,a,1);
1718
return a;
1819
}
19-
}
20+
}

0 commit comments

Comments
 (0)