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 106d6de commit a9db90eCopy full SHA for a9db90e
two-sum/mrlee7.py
@@ -7,4 +7,4 @@ def twoSum(self, nums: List[int], target: int) -> List[int]:
7
for i in range(0, len(nums) - 1):
8
for j in range(i + 1, len(nums)):
9
if (target - nums[i]) == nums[j]:
10
- return [i, j]
+ return [i, j]
0 commit comments