2019-03-09 algorithm leetcode -powerOfFour Leetcode题解之 —— 4的幂 思路 二进制解法 与2的幂一致 题解 12345678910111213/** * @param {number} num * @return {boolean} */var isPowerOfFour = function (num) { if (num <= 0) { return false; } const [temp, reg] = [(num).toString(4), /^10*$/g]; return reg.test(temp);}; 作者 : zhaoyang Duan 地址 : https://ddzy.github.io/blog/2019/03/09/leetcode-powerOfFour/ 来源 : https://ddzy.github.io/blog 著作权归作者所有,转载请联系作者获得授权。