알고리즘/LEETCODE1 [LeetCode - Easy] Two Sum 풀이 (C++) A. 문제설명 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 문제에 대한 자세한 설명은 링크 참조 1. 배열 nums와 정수 target이 주어짐 2. nums 배열 내 두 값을 더해 수 target을 만드는 배열의 인덱스를 찾을 것 B. 접근법 1. Brute-force 먼저, 아주 단순하게 배열 내 모든 두 원소를 비교하며 Brute-force로 확인하는 방식이다. 이 경.. 2020. 9. 3. 이전 1 다음