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 ==문제== candidates로 후보 숫자들이 주어지고 target 숫자가 주어진다. candidates에서 target숫자를 만들 수 있는 조합을 구하는 문제이다. ==설명== 후보 숫자를 선택하면 만들어야 하는 목표 숫자에서 그 수를 빼준다. 남은 숫자가 0보다 크다면 아직 타깃에 도달하지 못한 ..