2023-10-23 解題區►Leetcode►Easy Leetcode 342 - Power of Four 題目 Problem# 給你整數 n 如果 $n = 4^x$ 的話回傳 true 反之回傳 false Follow up: $O(1)$ 時間複雜度 測資限制# $-2^31 \le n \le 2^31-1$ 想法# 判斷一個整數是不是某個數(x)的次方可以除除看,或是取 $\log{x}$ AC Code# 時間複雜度: $\mathcal{O}(1)$ 空間複雜度: $\mathcal{O}(1)$ Newer Leetcode 515 - Find Largest Value in Each Tree Row Older Leetcode 341 - Flatten Nested List Iterator