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 e7839d5 commit 97b92bfCopy full SHA for 97b92bf
two-sum/paran22.py
@@ -7,4 +7,4 @@ def twoSum(self, nums: List[int], target: int) -> List[int]:
7
second_num = target - first_num
8
if second_num in num_dict and num_dict[second_num] != i:
9
return [i, num_dict[second_num]]
10
-
+
0 commit comments