Binary Number with Alternating Bits — LeetCode 693 Python Solution
EasyBit Manipulation
- Problem
- #693
- Pattern
- Bit Manipulation
- Reading time
- 2 min
- Source
- leetcode.com
The problem
Given a positive integer, check whether it has alternating bits: namely, if two adjacent bits will always have different values.
Example
- Input
- n = 5
- Output
- true
- Explanation
- The binary representation of 5 is: 101
Python solution
Python
class Solution:
def hasAlternatingBits(self, n: int) -> bool:
prev = -1
while n:
curr = n & 1
if prev == curr:
return False
prev = curr
n >>= 1
return TrueComplexity
| Measure | Complexity |
|---|---|
| Time | O(n) |
| Space | O(1) auxiliary |
Pattern: Bit Manipulation
Use XOR, masks and the low-bit trick to replace whole data structures with an integer. LeetCode 693. Binary Number with Alternating Bits is filed here on both counts: the reference solution below belongs to the algorithm family this hub collects, and LeetCode tags it Bit Manipulation.
The bit manipulation guide has the Python template for the pattern and the 194 LeetCode problems that use it.
Related problems
Frequently asked questions
- How hard is LeetCode 693. Binary Number with Alternating Bits?
- LeetCode 693. Binary Number with Alternating Bits is rated Easy on LeetCode.
- What is the time complexity of LeetCode 693. Binary Number with Alternating Bits?
- The Python solution on this page runs in O(n).
- What is the space complexity of LeetCode 693. Binary Number with Alternating Bits?
- The Python solution on this page uses O(1) auxiliary space.
- What topics does LeetCode 693. Binary Number with Alternating Bits cover?
- LeetCode 693. Binary Number with Alternating Bits is tagged Bit Manipulation on LeetCode.