326 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?
思路
如果单纯利用循环,其实还是很好做的。
|
|
但是不利用循环的方法实在是想不出来……就看看这篇参考资料吧:
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?
如果单纯利用循环,其实还是很好做的。
|
|
但是不利用循环的方法实在是想不出来……就看看这篇参考资料吧: