|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
- Given an integer, write a function to determine if it is a power of three.
- Example 1:
- Input: 27
- Output: true
- Example 2:
- Input: 0
- Output: false
- Example 3:
- Input: 9
- Output: true
- Example 4:
- Input: 45
- Output: false
- Follow up:
- Could you do it without using any loop / recursion?
复制代码
- class Solution {
- public boolean isPowerOfThree(int n) {
- if(n == 0) return false;
- if(n == 1) return true;
-
- if(n % 3 == 0)
- return isPowerOfThree(n/3);
- else
- return false;
- }
- }
复制代码
- class Solution {
- public boolean isPowerOfThree(int n) {
-
- return (n > 0 && 1162261467 % n == 0);
- }
- }
复制代码 |
|