Leetcode 326. Power of Three

題目描述:判斷一個數是不是以3爲低的冪數。 題目鏈接:Leetcode 326. Power of Three 思路:沿用最簡單額做法就是不斷除以4,看看最後結果是不是1,只要餘數爲0就可以除得盡。 代碼如下 class Solution: def isPowerOfThree(self, n): """ :type n: int :rtype: bool """
相關文章
相關標籤/搜索