leedcode-4的冪

Junior_bond發表於2024-04-08

自己寫的,如果n對4可以整除。就讓n除以4,迴圈往復

class Solution:
    def isPowerOfFour(self, n: int) -> bool:
        while n%4==0 and n>0:
            n//=4

        return n==1

相關文章