Combination Sum

Try to solve the Combination Sum problem.

Statement

Given an array of distinct integers, nums, and an integer, target, return a list of all unique combinations of nums where the chosen numbers sum up to the target. The combinations may be returned in any order.

An integer from nums may be chosen an unlimited number of times. Two combinations are unique if the frequency of at least one of the chosen integers is different.

Constraints:

  • 1≤1 \leq nums.length ≤30\leq 30
  • 2≤2 \leq nums[i] ≤40\leq 40
  • 1≤1 \leq target ≤40\leq 40
  • All integers of nums are unique.

Examples

Create a free account to view this lesson.

By signing up, you agree to Educative's Terms of Service and Privacy Policy