forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
single-number-ii.py
44 lines (40 loc) · 1.28 KB
/
single-number-ii.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Time: O(n)
# Space: O(1)
#
# Given an array of integers, every element appears three times except for one. Find that single one.
#
# Note:
# Your algorithm should have a linear runtime complexity. Could you implement it without using extra memory?
#
class Solution:
# @param A, a list of integer
# @return an integer
def singleNumber(self, A):
one, two = 0, 0
for x in A:
one, two = (~x & one) | (x & ~one & ~two), (~x & two) | (x & one)
return one
class Solution2:
# @param A, a list of integer
# @return an integer
def singleNumber(self, A):
one, two, carry = 0, 0, 0
for x in A:
two |= one & x
one ^= x
carry = one & two
one &= ~carry
two &= ~carry
return one
# every element appears 4 times except for one with 2 times
class SolutionEX:
# @param A, a list of integer
# @return an integer
# [1, 1, 1, 1, 2, 2, 2, 2, 3, 3]
def singleNumber(self, A):
one, two, three = 0, 0, 0
for x in A:
one, two, three = (~x & one) | (x & ~one & ~two & ~three), (~x & two) | (x & one), (~x & three) | (x & two)
return two
if __name__ == "__main__":
print Solution().singleNumber([1, 1, 1, 2, 2, 2, 3])