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 2e0702f commit 0c98424Copy full SHA for 0c98424
two-sum/socow.py
@@ -14,4 +14,5 @@ def twoSum(self, nums: List[int], target: int) -> List[int]:
14
if complement in num_map:
15
return [num_map[complement], i]
16
num_map[num] = i
17
-
+ return []
18
+
0 commit comments