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