-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpower_of_two.dart
69 lines (50 loc) · 1.21 KB
/
power_of_two.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
-* Power of Two *-
Given an integer n, return true if it is a power of two. Otherwise, return false.
An integer n is a power of two, if there exists an integer x such that n == 2x.
Example 1:
Input: n = 1
Output: true
Explanation: 20 = 1
Example 2:
Input: n = 16
Output: true
Explanation: 24 = 16
Example 3:
Input: n = 3
Output: false
Constraints:
-231 <= n <= 231 - 1
Follow up: Could you solve it without loops/recursion?
*/
class A {
// Bit Manipulation
bool isPowerOfTwo(int n) {
return n > 0 && ((n & (n - 1)) == 0);
}
}
class B {
// Iterative
bool isPowerOfTwo(int n) {
if (n <= 0) return false;
while (n % 2 == 0) n ~/= 2;
return n == 1;
}
}
class C {
bool isPowerOfTwo(int n) {
return n > 0 && (n == 1 || (n % 2 == 0 && isPowerOfTwo(n ~/ 2)));
}
}
class D {
// TLC
bool isPowerOfTwo(int n) {
return n > 0 && (1073741824 % n == 0);
}
}
// class Solution {
// // TLC
// bool isPowerOfTwo(int n) {
// return HashSet((1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536, 131072, 262144, 524288, 1048576, 2097152, 4194304, 8388608,16777216, 33554432, 67108864, 134217728, 268435456, 536870912, 1073741824)).contains(n);
// }
// }