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

342. Power of Four

时间:2019-10-19 09:37:02      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:poweroff   amp   put   sig   pre   style   OLE   check   turn   

Given an integer (signed 32 bits), write a function to check whether it is a power of 4.

Example 1:

Input: 16
Output: true

Example 2:

Input: 5
Output: false
class Solution {
    public boolean isPowerOfFour(int num) {
         return Math.log10(num) / Math.log10(4) % 1 == 0; 
    }
}

 

342. Power of Four

标签:poweroff   amp   put   sig   pre   style   OLE   check   turn   

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

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