배고픈 개발자 이야기

[Python] TwoSum 본문

알고리즘 문제/LEETCODE

[Python] TwoSum

이융희 2021. 5. 6. 01:48
728x90

Easy난이도 Acceptence 46.8% 문제

 

더했을때 target값이되는 nums의 원소 2개의 인덱스를 리스트로 반환하는 문제로

앞쪽 원소부터 찾아 정답을 구하도록 하였다.

 

class Solution(object):
    def twoSum(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: List[int]
        """
        for i, x in enumerate(nums):
            for j in range(len(nums) - i - 1):
                if target == nums[i] + nums[i + j + 1]:
                    return [i, i + j + 1]

'알고리즘 문제 > LEETCODE' 카테고리의 다른 글

[Python] Longest Valid Parentheses  (0) 2021.05.06
[Python] Valid Parentheses  (0) 2021.05.06
[Python] SymmetricTree  (0) 2021.05.06
[Python] SingleNumber  (0) 2021.05.06
[Python] MergeTwoSortedLists  (0) 2021.05.06
Comments