Skip to content

Commit e01cf66

Browse files
committed
167
1 parent 257866b commit e01cf66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

167_Two_Sum_II.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ def twoSum(self, numbers, target):
1010
if m.has_key(target-n):
1111
if target == 2*n:
1212
return [m[n]-1,m[n]]
13-
return [m[n],m[target-n]]
13+
return [m[n],m[target-n]]

0 commit comments

Comments
 (0)