Skip to content

Commit a076cfe

Browse files
authored
Merge pull request #868 from pontusdacke/338-counting-bits
Add csharp solution for 338 Counting bits
2 parents 6fffdba + 13d4855 commit a076cfe

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

csharp/338-Counting-Bits.cs

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
public class Solution {
2+
public int[] CountBits(int n) {
3+
var hammingWeights = new int[n+1];
4+
for (int i = 0; i <= n; i++)
5+
{
6+
var binary = Convert.ToString(i, 2);
7+
var hammingWeight = 0;
8+
for (int j = 0; j < binary.Length; j++)
9+
{
10+
hammingWeight += binary[j] - '0';
11+
}
12+
hammingWeights[i] = hammingWeight;
13+
}
14+
return hammingWeights;
15+
}
16+
}

0 commit comments

Comments
 (0)