The complement of an integer is the integer you get when you flip all the 0’s to 1’s and all the 1’s to 0’s in its binary representation.
For example, The integer 5 is “101” in binary and its complement is “010” which is the integer 2.
Given an integer n, return its complement.
Example 1:
1 | Input: n = 5 |
Example 2:
1 | Input: n = 7 |
Example 3:
1 | Input: n = 10 |
Constraints:
1 | 0 <= n < 109 |
Approach
1 | Reverse each bit and shift it back. Add the value to the result. |
Algorithm
1 | 1. Get each bit and reverse it. |
Implementation
1 | int bitwiseComplement(int n){ |