문제: 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
조합을 응용해서 했습니다.
import Foundation
class Solution {
func combinationSum(_ candidates: [Int], _ target: Int) -> [[Int]] {
var result = [[Int]]()
func combination(_ index: Int, _ nowCombi: [Int]) {
if nowCombi.reduce(0, +) == target {
result.append(nowCombi)
return
} else if nowCombi.reduce(0, +) > target {
return
}
for i in index..<candidates.count {
combination(i, nowCombi + [candidates[i]])
}
}
combination(0, [])
return result
}
}
print(Solution().combinationSum([2,3,6,7], 7)) // [[2,2,3],[7]]
print(Solution().combinationSum([2,3,5], 8)) // [[2,2,2,2],[2,3,3],[3,5]]
print(Solution().combinationSum([2], 1)) // []
'알고리즘' 카테고리의 다른 글
[Swift] LeetCode - 207. Course Schedule (0) | 2022.02.16 |
---|---|
[Swift] LeetCode - 78. Subsets (0) | 2022.02.16 |
[Swift] LeetCode - 17. Letter Combinations of a Phone Number (0) | 2022.02.16 |
[Swift] LeetCode - 200. Number of Islands (0) | 2022.02.16 |
[Swift] LeetCode - 3. Longest Substring Without Repeating Characters (0) | 2022.02.16 |
댓글