-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path231.py
More file actions
54 lines (42 loc) · 863 Bytes
/
231.py
File metadata and controls
54 lines (42 loc) · 863 Bytes
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
'''
231. Power of Two
Given an integer, write a function to determine if it is a power of two.
Example 1:
Input: 1
Output: true
Explanation: 20 = 1
Example 2:
Input: 16
Output: true
Explanation: 24 = 16
Example 3:
Input: 218
Output: false
'''
#Solution-1
class Solution(object):
def isPowerOfTwo(self, n):
"""
:type n: int
:rtype: bool
"""
i = 0
while True:
i_power = 2 ** i
if i_power == n:
return True
else:
if i_power > n:
return False
i+=1
#Solution-2
class Solution(object):
def isPowerOfTwo(self, n):
"""
:type n: int
:rtype: bool
"""
if n <= 0:
return False
else:
return (n & (n-1)) == 0