← ALL NOTES
Array

39. Combination Sum

Standard backtracking, built one number at a time — but two design choices make it this problem. Because each candidate may be reused without limit, the recursion recurses on the same index i rather…

Loading…