Skip to content

Commit 2f2d997

Browse files
Two Sum
1 parent e3de0b5 commit 2f2d997

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

0001-Two-Sum.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ def twoSum(self, nums: List[int], target: int) -> List[int]:
2323
return [dict[temp], i]
2424
dict.update({nums[i] : i})
2525

26+
# Using Hash Tables (New)
27+
2628
# Check Custom Input
2729

2830
s = Solution()

0 commit comments

Comments
 (0)