Skip to content

Commit 9ff0e1b

Browse files
committed
Single Number III
1 parent 884d4cc commit 9ff0e1b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

260-single-number-iii.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,6 @@ def singleNumber(self, nums: List[int]) -> List[int]:
2525
res[0] ^= no
2626
else:
2727
res[1] ^= no
28-
return res
28+
return res
29+
30+
# Reference -> https://leetcode.com/problems/single-number-iii/discuss/68901/Sharing-explanation-of-the-solution/263808

0 commit comments

Comments
 (0)