Skip to content

Commit a9db90e

Browse files
committed
formatting two sum code
1 parent 106d6de commit a9db90e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

two-sum/mrlee7.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ def twoSum(self, nums: List[int], target: int) -> List[int]:
77
for i in range(0, len(nums) - 1):
88
for j in range(i + 1, len(nums)):
99
if (target - nums[i]) == nums[j]:
10-
return [i, j]
10+
return [i, j]

0 commit comments

Comments
 (0)