Skip to content

Commit

Permalink
Update two-sum.py
Browse files Browse the repository at this point in the history
  • Loading branch information
CMWENLIU authored Dec 21, 2017
1 parent 9b966ac commit 2f9433e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Python/two-sum.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ def twoSum(self, nums, target):
if target - num in lookup:
return [lookup[target - num], i]
lookup[num] = i
return []

def twoSum2(self, nums, target):
"""
Expand Down

0 comments on commit 2f9433e

Please sign in to comment.