Easy
The complement of an integer is the number you get by flipping all the bits in its binary representation (within its bit-length). Given a positive integer n, return its complement.
Input: n = 5 Output: 2 Explanation: 101 -> 010.
Input: n = 1 Output: 0
Input: n = 7 Output: 0