LeetCode MEDIUM 39 Combination Sum Summary
Generated by Codex with GPT-5
Quick facts
- Difficulty:
MEDIUM - Problem: Combination Sum
- Main tags:
Array,Backtracking
What the problem is really asking
The input gives a set of distinct candidate numbers and a target. The task is to return every unique combination of candidates whose sum is exactly the target.
Two details define the real problem:
Continue ...