LeetCode: https://leetcode.com/problems/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. You may use the same number unlimited times.
i
2
0
3
1
6
2
7
3
remain=7
cur=[]
res=[]
Step 1 / 6
Step 1:
Start dfs(i=0, remain=7), cur=[].
Pointers: i=0
Focus: select @ [0]
remain=7