Skip to content

Commit 191e5fd

Browse files
committed
Time: 196 ms (90.86%), Space: 51.7 MB (21.50%) - LeetHub
1 parent e3c56b6 commit 191e5fd

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/**
2+
* @param {number} n
3+
* @return {boolean}
4+
*/
5+
var isPowerOfThree = function(n) {
6+
// 1162261467 is 3^19, 3^20 is bigger than int
7+
return ( n>0 && 1162261467%n==0);
8+
};

0 commit comments

Comments
 (0)