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