We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 257866b commit e01cf66Copy full SHA for e01cf66
167_Two_Sum_II.py
@@ -10,4 +10,4 @@ def twoSum(self, numbers, target):
10
if m.has_key(target-n):
11
if target == 2*n:
12
return [m[n]-1,m[n]]
13
- return [m[n],m[target-n]]
+ return [m[n],m[target-n]]
0 commit comments