We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cfd5a8 commit b5456ceCopy full SHA for b5456ce
Python/single-number-ii.py
@@ -13,6 +13,7 @@ def singleNumber(self, A):
13
one, two = (~x & one) | (x & ~one & ~two), (~x & two) | (x & one)
14
return one
15
16
+
17
class Solution2(object):
18
# @param A, a list of integer
19
# @return an integer
0 commit comments