2019-02-25 algorithm leetcode -hammingWeight Leetcode题解之 —— 位1的个数 思路 使用match 题解 123456789101112/** * @param {number} n - a positive integer * @return {number} */var hammingWeight = function(n) { const nToTwo = n.toString(2); const reg = /1{1}/g; const result = nToTwo.match(reg); return result ? result.length : 0;}; 作者 : zhaoyang Duan 地址 : https://ddzy.github.io/blog/2019/02/25/leetcode-hammingWeight/ 来源 : https://ddzy.github.io/blog 著作权归作者所有,转载请联系作者获得授权。