-
-
Notifications
You must be signed in to change notification settings - Fork 291
Expand file tree
/
Copy path342.java
More file actions
20 lines (20 loc) · 678 Bytes
/
342.java
File metadata and controls
20 lines (20 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
__________________________________________________________________________________________________
sample 0 ms submission
class Solution {
public boolean isPowerOfFour(int n) {
return n > 0 && ((n & (n-1)) == 0) && (n & 0x55555555) != 0;
}
}
__________________________________________________________________________________________________
sample 31988 kb submission
class Solution {
public boolean isPowerOfFour(int num) {
if(num<1)
return false;
while(num%4==0){
num /= 4;
}
return num==1;
}
}
__________________________________________________________________________________________________