Skip to content

Commit 30a81d9

Browse files
committed
Runtime: 96 ms (Top 66.73%) | Memory: 43.9 MB (Top 16.57%)
1 parent e9a72fb commit 30a81d9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/P/Power of Four/Power of Four.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 96 ms (Top 66.73%) | Memory: 43.9 MB (Top 16.57%)
12
var isPowerOfFour = function(n) {
23
if(n==1){
34
return true
@@ -10,4 +11,4 @@ var isPowerOfFour = function(n) {
1011
}
1112
}
1213
return false
13-
};
14+
};

0 commit comments

Comments
 (0)