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

326. Power of Three

时间:2019-10-19 09:21:30      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:determine   term   solution   col   lse   put   style   NPU   cti   

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) {
        return Math.log10(n) / Math.log10(3) % 1 == 0; 
    }
}

真就一行啊

小数除以整数余数也是小数

0除以任何数余数都是0

326. Power of Three

标签:determine   term   solution   col   lse   put   style   NPU   cti   

原文地址:https://www.cnblogs.com/wentiliangkaihua/p/11702718.html

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