40. Combination Sum II
Medium
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]
]Last updated
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]
]Last updated