completes 30/909 test cases

This commit is contained in:
Jacob Delgado 2023-08-02 00:12:29 -07:00
parent 4dc1fcce19
commit 279f276493

View File

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