Change the Better World

Leetcode - Two Sum 본문

Programming/Python

Leetcode - Two Sum

white_cheetah 2022. 6. 3. 09:33

Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.

You may assume that each input would have exactly one solution, and you may not use the same element twice.

You can return the answer in any order.

 

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

Comments