
Combination Sum IV
·
PS/LeetCode
문제https://leetcode.com/problems/combination-sum-iv/description/입력1 결과ans: Int = nums를 이용해 target을 만들 수 있는 중복조합의 수해석dfs와 memorization을 섞은 문제로 해석 된다.target을 nums에 있는 수 만큼 내리는 top-down 방식으로 해결target이 음수로 가면 가능성이 없으므로 0target이 0이면 1을 리턴 코드class Solution { func combinationSum4(_ nums: [Int], _ target: Int) -> Int { var cache: [Int] = [Int](repeating: -1, count: target+1) cache[0] = 0..