물음표 살인마의 개발블로그

알고리즘 문제/CodeWar

Two Sum

BEstyle 2022. 9. 17. 17:51

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.

 

Example 1:

Input: nums = [2,7,11,15], target = 9
Output: [0,1]
Explanation: Because nums[0] + nums[1] == 9, we return [0, 1].

Example 2:

Input: nums = [3,2,4], target = 6
Output: [1,2]

Example 3:

Input: nums = [3,3], target = 6
Output: [0,1]

 

Constraints:

  • 2 <= nums.length <= 104
  • -109 <= nums[i] <= 109
  • -109 <= target <= 109
  • Only one valid answer exists.

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


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

 

 

 

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

Array.diff  (0) 2022.09.19
Get the Middle Character  (1) 2022.09.19
Duplicate Encoder  (0) 2022.09.19
Ones and Zeros  (0) 2022.09.18
Two to One  (0) 2022.09.14