Daily challenge for 2025-11-21
325. Combination Sum
Given an array of distinct integers candidates and a target integer target, return a list of all unique combinations of candidates where the chosen numbers sum to target.
The same number may be chosen from candidates an unlimited number of times.
Example:Input: candidates = [2,3,6,7], target = 7Output: [[2,2,3],[7]]
Example 2:Input: candidates = [2,3,5], target = 8Output: [[2,2,2,2],[2,3,3],[3,5]]
Run this challenge interactively in Python or JavaScript when the app loads.