leetcode.com/problems/two-sum-ii-input-array-is-sorted/
Two Sum II - Input array is sorted - LeetCode
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
leetcode.com
class Solution:
def twoSum(self, numbers: List[int], target: int) -> List[int]:
dct={}
for i in range(len(numbers)):
dct[numbers[i]]=i
for i in range(len(numbers)):
p = target - numbers[i]
if p in dct:
return [i+1,dct[p]+1]
댓글