Start of two sum

This commit is contained in:
Jacob Delgado 2023-07-31 21:46:07 -07:00
parent 97acb55536
commit 4dc1fcce19

View File

@ -0,0 +1,7 @@
def twoSum(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: List[int]
"""