💬 Info
- 난이도 : Easy
- 문제 링크 : https://leetcode.com/problems/two-sum/description/
- 풀이 링크 : LeetCode/Easy/59832-2143-1-two-sum.py
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.
풀이 시간 : 12분
class Solution:
def twoSum(self, nums: List[int], target: int) -> List[int]:
for i in range(len(nums)):
for j in range(i+1, len(nums)):
if nums[i] + nums[j] == target:
return [i, j]