class Solution { public: int hammingWeight(uint32_t n) { int count =0; while(n!=0){. n = n&(n-1); count++; } return count; }.
確定! 回上一頁