码迷,mamicode.com
首页 > 其他好文 > 详细

326.3的幂

时间:2019-07-08 13:22:34      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:class   int   mamicode   不难   code   一个   img   isp   turn   

技术图片
这道题题意不难 但是不用循环或者递归的话 还是有点难度的

class Solution {
    public boolean isPowerOfThree(int n) {
        if(n == 0) return false;
           int x = (int) (Math.log10(n)/Math.log10(3));
           return Math.pow(3,x)==n;
        }
}

第二种比较有意思
如果只有一个1 其他都是0 说明是3的幂 三进制

public class Solution {
    public boolean isPowerOfThree(int n) {
        return Integer.toString(n, 3).matches("^10*$");
    }
}

326.3的幂

标签:class   int   mamicode   不难   code   一个   img   isp   turn   

原文地址:https://www.cnblogs.com/cznczai/p/11150344.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!