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