1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-20 01:56:57 +02:00
LeetCode/problems/number-complement.swift

14 lines
264 B
Swift
Raw Normal View History

class Solution {
func findComplement(_ num: Int) -> Int {
if num == 0 {
return 0;
}
if num & 1 != 0 {
return findComplement(num >> 1) << 1;
}
return (findComplement(num >> 1) << 1) + 1;
}
}