There was an error while loading. Please reload this page.
1 parent e3de0b5 commit 2f2d997Copy full SHA for 2f2d997
0001-Two-Sum.py
@@ -23,6 +23,8 @@ def twoSum(self, nums: List[int], target: int) -> List[int]:
23
return [dict[temp], i]
24
dict.update({nums[i] : i})
25
26
+# Using Hash Tables (New)
27
+
28
# Check Custom Input
29
30
s = Solution()
0 commit comments