[LeetCode][JavaScript]Power of Three
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode][JavaScript]Power of Three相关的知识,希望对你有一定的参考价值。
Power of Three
Given an integer, write a function to determine if it is a power of three.
Follow up:
Could you do it without using any loop / recursion?
https://leetcode.com/problems/power-of-three/
要求判断一个数是不是3的幂次方。
最直观的做法是不停除以3,看余数是否为零。
题目要求不能用递归和循环,那就是数学题了。
把给定的数N用求以3为底的对数(log3N),如果结果是整数说明N是3的幂次方。
1 /** 2 * @param {number} n 3 * @return {boolean} 4 */ 5 var isPowerOfThree = function(n) { 6 n = Math.log(n) / Math.log(3); 7 return Math.abs(n - Math.round(n)) < 1e-10 ? true : false; 8 };
以上是关于[LeetCode][JavaScript]Power of Three的主要内容,如果未能解决你的问题,请参考以下文章