7 lines
146 B
Python
7 lines
146 B
Python
def twoSum(self, nums, target):
|
|
"""
|
|
:type nums: List[int]
|
|
:type target: int
|
|
:rtype: List[int]
|
|
"""
|
|
|