自己寫的,如果n對4可以整除。就讓n除以4,迴圈往復
class Solution: def isPowerOfFour(self, n: int) -> bool: while n%4==0 and n>0: n//=4 return n==1
自己寫的,如果n對4可以整除。就讓n除以4,迴圈往復
class Solution: def isPowerOfFour(self, n: int) -> bool: while n%4==0 and n>0: n//=4 return n==1