这道题里面没有重复的元素,但是给了一个所有组合的个数,所以在判断的时候,我们不仅需要判断target还要判断个数是否正确。
if(k == 0 && n == 0){res.add(new ArrayList<>(list)); return; }
if(k == 0 || n == 0){ return;}
其他类似。
code:
https://github.com/hanleirx/LeetCode/blob/master/216.%20%E7%BB%84%E5%90%88%E6%80%BB%E5%92%8C%20III