Skip to content

Commit b5456ce

Browse files
authored
Update single-number-ii.py
1 parent 8cfd5a8 commit b5456ce

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Python/single-number-ii.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ def singleNumber(self, A):
1313
one, two = (~x & one) | (x & ~one & ~two), (~x & two) | (x & one)
1414
return one
1515

16+
1617
class Solution2(object):
1718
# @param A, a list of integer
1819
# @return an integer

0 commit comments

Comments
 (0)