LeetCode-326. Power of Three

Posted

tags:

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

Description:

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

判断一个整数是否是3的幂。

基于公式log3^n可以得出y=lg(n)/log(3)如果y正好是个整数的话,说明n是3的幂。也可以使用循环除3的方法,也不是很浪费时间循环不了多少次。

public class Solution {
    public boolean isPowerOfThree(int n) {
        
        double ans = Math.log(n) / Math.log(3);
        return Math.abs(ans - Math.round(ans)) < 0.000000000001;
    }
}

技术分享

以上是关于LeetCode-326. Power of Three的主要内容,如果未能解决你的问题,请参考以下文章

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

LeetCode - 326. Power of Three

LeetCode-326. Power of Three

39. leetcode 326. Power of Three

LeetCode 326. 3的幂 Power of Three

LeetCode 326. 3的幂 Power of Three