Skip to content

Commit b132ca5

Browse files
authored
Rename 2 sum python.txt to 2 sum python.py
1 parent bb412bb commit b132ca5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Problem Solution/1) 2 sum (easy)/2 sum python.txt renamed to Problem Solution/1) 2 sum (easy)/2 sum python.py

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

0 commit comments

Comments
 (0)