40. Combination Sum II
Problem Statement
Input: candidates = [10,1,2,7,6,1,5], target = 8
Output:
[
[1,1,6],
[1,2,5],
[1,7],
[2,6]
]Input: candidates = [2,5,2,1,2], target = 5
Output:
[
[1,2,2],
[5]
]Intuition
Links
Video Links
Approach 1:
Approach 2:
Approach 3:
Approach 4:
Similar Problems
Last updated