Skip to content

Commit a786db8

Browse files
committed
Time: 0 ms (100%), Space: 57.8 MB (62.77%) - LeetHub
1 parent 0c0fe20 commit a786db8

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
function isPowerOfFour(n: number): boolean {
2+
if (n <= 0) return false;
3+
4+
while (n % 4 === 0) {
5+
n = n / 4
6+
}
7+
8+
return n === 1 ? true : false;
9+
};

0 commit comments

Comments
 (0)