Skip to content

Commit cf1ba6a

Browse files
authored
Rename 2 sum python.md to 2 sum python.py
1 parent 0bee048 commit cf1ba6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1) 2 sum (easy)/2 sum python.md renamed to 1) 2 sum (easy)/2 sum python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ def twoSum(self, nums, target):
99
#If one of those pairs add together equal to the target return the answer else return None.
1010
if nums[p1] + nums[p2] == target:
1111
return [p1, p2]
12-
return 'None'
12+
return 'None'

0 commit comments

Comments
 (0)