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

LeetCode 326. 3的幂 Power of Three

时间:2020-05-29 23:26:58      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:isp   code   false   inf   turn   lse   图片   alt   ==   

技术图片

 

 

class Solution {
public:
    bool isPowerOfThree(int n) {
        if (n < 1) return false;
        while (n % 3 == 0)
            n /= 3;
        return n == 1;
    }
};

 

LeetCode 326. 3的幂 Power of Three

标签:isp   code   false   inf   turn   lse   图片   alt   ==   

原文地址:https://www.cnblogs.com/ZSY-blog/p/12989732.html

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