326. 3的幂

在这里插入图片描述

数学方法

class Solution:
    def isPowerOfThree(self, n: int) -> bool:
        if n<=0: return False
        m=math.log(n,3)
        return True if abs(m-round(m))<1e-10 else False

取对数,然后取整,判断误差是否小于1e-10
这里被精度卡了好几次。。
还有就是不能用int取整,会直接取得整数位,应该用round带有四舍五入的取整
在这里插入图片描述

迭代

class Solution:
    def isPowerOfThree(self, n: int) -> bool:
        if n<1: return False
        while n%3==0:
            n/=3
        return True if abs(n-1)<1e-10 else False

在这里插入图片描述
3 的幂应该是n个3相乘起来的数,如果n能够被3整除,则一直整除3,如果不能,那么只有两种情况,一种是n和1相近,第二种是n不和1相近

递归

class Solution:
    def isPowerOfThree(self, n: int) -> bool:
        if n<1: return False
        if n%3==0:
            return self.isPowerOfThree(n/3)
        return True if abs(n-1)<1e-10 else False

大同小异


后序

python 直接返回n==1 也可以,帮我们直接比较精度了。。

    def isPowerOfThree(self, n: int) -> bool:
        if n<1: return False
        if n%3==0:
            return self.isPowerOfThree(n/3)
        return n==1

下面是官方题解
https://leetcode-cn.com/problems/power-of-three/solution/3de-mi-by-leetcode/

有时候自己费劲心思想出来的方法还没有普通的方法好用

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值