-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbinary-number-with-alternating-bits.py
More file actions
50 lines (39 loc) · 1.06 KB
/
binary-number-with-alternating-bits.py
File metadata and controls
50 lines (39 loc) · 1.06 KB
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
'''
Given a positive integer, check whether it has alternating bits: namely, if two adjacent bits will always have different values.
Example 1:
Input: 5
Output: True
Explanation:
The binary representation of 5 is: 101
Example 2:
Input: 7
Output: False
Explanation:
The binary representation of 7 is: 111.
Example 3:
Input: 11
Output: False
Explanation:
The binary representation of 11 is: 1011.
Example 4:
Input: 10
Output: True
Explanation:
The binary representation of 10 is: 1010.
'''
class Solution:
def hasAlternatingBits(self, n):
"""
:type n: int
:rtype: bool
"""
# method one 强行一行, 代码效率不够高. 40ms 93%
# 重复了bin() 操作 , 不符合要求的数字没有提前终止,而是进行了所有比较
# return all(bin(n)[2:][i] != bin(n)[2:][i+1] for i in range(len(bin(n)[2:])-1))
# Approach #2 位运算
n, curr = divmod(n, 2)
while n > 0:
if curr == n % 2:
return False
n, curr = divmod(n, 2)
return True