The complement of an integer is the integer you get when you flip all the
0‘s to1‘s and all the1‘s to0‘s in its binary representation.
- For example, The integer
5is"101"in binary and its complement is"010"which is the integer2.Given an integer
num, return its complement.
1 | class Solution { |