2019-02-28 algorithm leetcode -isPowerOfTwo Leetcode题解之 —— 2的幂 思路 二进制解法 2的幂次方, 其二进制必定只存在一个1 题解 1234567891011121314/** * @param {number} n * @return {boolean} */var isPowerOfTwo = function (n) { if (n <= 0) { return false; } const temp = '' + (n).toString(2); const matched = temp.match(/1{1}/g); return matched && matched.length === 1;}; 作者 : zhaoyang Duan 地址 : https://ddzy.github.io/blog/2019/02/28/leetcode-isPowerOfTwo/ 来源 : https://ddzy.github.io/blog 著作权归作者所有,转载请联系作者获得授权。