1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/problems/number-complement.swift
Matej Focko 96c6e8d66d
problems: add previously solved problems
Signed-off-by: Matej Focko <mfocko@redhat.com>
2022-01-18 21:43:49 +01:00

13 lines
264 B
Swift

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;
}
}