문돌이 존버/프로그래밍 스터디
2021. 3. 30.
(leetcode 문제 풀이) 1번, Two Sum
leetcode easy 문제 결코 쉽지 않다. 하나의 방법이 있는 것이 아니라 여러 가지 솔루션이 나올 수 있다. 문제 설명 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: [..