476 Number Complement
Input:
5
Output:
2
Explanation:
The binary representation of 5 is 101 (no leading zero bits), and its complement is 010. So you need to output 2.Input:
1
Output:
0
Explanation:
The binary representation of 1 is 1 (no leading zero bits), and its complement is 0. So you need to output 0.Last updated