본문 바로가기
Problem Solving/리트코드

[리트코드 leetcode] 167. Two Sum II - Input array is sorted

by ggyongi 2021. 4. 12.

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]
            
            

📘 비전공자 개발자 취업 성공기 시리즈

개발자가 되고 싶었던 한 비전공자의 1년 4개월 이야기
막막했던 시작부터 좌절, 그리고 합격까지의 여정을 기록했습니다

 

비전공자 네카라 신입 취업 노하우

시행착오 끝에 얻어낸 취업 노하우가 모두 담긴 전자책!

kmong.com

댓글