-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhasAlternatingBits.go
More file actions
33 lines (31 loc) · 834 Bytes
/
Copy pathhasAlternatingBits.go
File metadata and controls
33 lines (31 loc) · 834 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
/* https://leetcode.com/problems/binary-number-with-alternating-bits/description/
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.
*/
package lbm
// others: https://discuss.leetcode.com/category/1550/binary-number-with-alternating-bits
func hasAlternatingBits(n int) bool {
if n ^= n / 4; n&(n-1) > 0 {
return false
}
return true
}