1. 문제 https://leetcode.com/problems/combination-sum/ Combination 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 2. 접근 방법 조합 내의 요소는 중복될 수 있는데, 동일한 조합이 답에 들어있으면 안됩니다. 이 말이 맞나 ? 그리고 해당 조합의 합이 target과 같아야합ㄴㅣ다. 그래서 조합을 만들어줄 때, 조합 내의 요소가 같은 조합이 여러 번 존재하지 않도록 temp에 append할 요소를 star..
[LeetCode] 39. Combination Sum