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.class Solution:
def findComplement(self, num: int) -> int:
i = 1
while i <= num:
i<<=1
return num^(i-1)
Last updated