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