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 0bee048 commit cf1ba6aCopy full SHA for cf1ba6a
1) 2 sum (easy)/2 sum python.md renamed to 1) 2 sum (easy)/2 sum python.py
@@ -9,4 +9,4 @@ def twoSum(self, nums, target):
9
#If one of those pairs add together equal to the target return the answer else return None.
10
if nums[p1] + nums[p2] == target:
11
return [p1, p2]
12
- return 'None'
+ return 'None'
0 commit comments