[LeetCode] Two Sum
2022. 2. 25. 01:42
[LeetCode] 1. Two Sum 문제 링크 https://leetcode.com/problems/two-sum/ Two Sum - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com Integer 배열인 nums와 Integer인 target이 주어진다. nums 배열 원소들 중 두 개를 골라 더한 값이 target일 때, 두 원소의 index를 배열에 담아 리턴하는 문제였다. * 단 같은 수를 두번 사용할 수 없으며, 한가지 방법만 존재함이 보장된다. Exa..