Skip to content

Commit c329092

Browse files
committed
Added Number of 1 Bits
1 parent 68d8191 commit c329092

4 files changed

+45
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class Solution {
2+
public:
3+
int hammingWeight(uint32_t n) {
4+
int ans = 0;
5+
6+
while (n != 0) {
7+
ans++;
8+
n &= (n - 1);
9+
}
10+
11+
return ans;
12+
}
13+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
public class Solution {
2+
public int hammingWeight(int n) {
3+
int ans = 0;
4+
5+
while (n != 0) {
6+
ans++;
7+
n &= (n - 1);
8+
}
9+
10+
return ans;
11+
}
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
var hammingWeight = function(n) {
2+
var ans = 0;
3+
4+
while (n !== 0) {
5+
ans++;
6+
n &= (n - 1);
7+
}
8+
9+
return ans;
10+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
class Solution:
2+
def hammingWeight(self, n: int) -> int:
3+
ans = 0
4+
5+
while n != 0:
6+
ans += 1
7+
n = n & (n-1)
8+
9+
return ans
10+
# Time: O(Bits), Space: O(1)

0 commit comments

Comments
 (0)