leetcode_326 Power Of Three(Binary Manipulation)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode_326 Power Of Three(Binary Manipulation)相关的知识,希望对你有一定的参考价值。

Given an integer, write a function to determine if it is a power of three.

Follow up:
Could you do it without using any loop / recursion?

public class Solution {
    public boolean isPowerOfThree(int n) {
        return (Math.log10(n)/Math.log10(3))%1==0;
    }
}

 


以上是关于leetcode_326 Power Of Three(Binary Manipulation)的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode - 326. Power of Three

leetcode 326. Power of Three

LeetCode----326. Power of Three(Java)

LeetCode-326. Power of Three

326. Power of Three(LeetCode)

39. leetcode 326. Power of Three