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 254e4c7 commit 0307632Copy full SHA for 0307632
1 file changed
two-sum/hyeri0903.py
@@ -4,4 +4,5 @@ def twoSum(self, nums: List[int], target: int) -> List[int]:
4
for i in range(len(nums)):
5
for j in range(i+1, len(nums)):
6
if nums[i] + nums[j] == target:
7
- return [i, j]
+ return [i, j]
8
+
0 commit comments