image_2022-03-22_14-39-24.png
30 KB
#N191. Number of 1 Bits
problem link
#solution
problem link
#solution
public class Solution {
// you need to treat n as an unsigned value
public int hammingWeight(int n) {
int count=0;
while(n!=0){
if((n&1)==1)
count++;
n=n>>>1;
}
return count;
}
}