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?
这个题的follow up是希望能不用循环或递归,一直想不出来解法,后来看到了下面的这种利用对数的换底公式来做的方法,也是拓宽了思路
log以3为底的n的对数等于以n为底10的对数除以3为底10的对数
1 | class Solution { |