Java/191. Number of 1 Bits 位1的個數

題目         代碼部分(4ms 45.91%) public class Solution { public int hammingWeight(int n) { int res = 0; while(n != 0){ n = n & (n - 1); res++; }
相關文章
相關標籤/搜索