每天一道LeetCode--326. Power of Three
Posted 华裳绕指柔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了每天一道LeetCode--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?
public class Solution { public boolean isPowerOfThree(int n) { int num=n; while(num>0&&num%3==0) num/=3; return num==1; } //return n > 0 && (1162261467 % n == 0); }
以上是关于每天一道LeetCode--326. Power of Three的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode----326. Power of Three(Java)
LeetCode - 326. Power of Three