You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
390 B
Python
15 lines
390 B
Python
class Solution(object):
|
|
def twoSum(self, nums, target):
|
|
"""
|
|
:type nums: List[int]
|
|
:type target: int
|
|
:rtype: List[int]
|
|
"""
|
|
|
|
for i in range(0, len(nums)):
|
|
for j in range(1, len(nums)):
|
|
if nums[i] + nums[j] == target:
|
|
print([i,j])
|
|
|
|
solution = Solution()
|
|
solution.twoSum([2,7,11,15], 9) |