摘要: leetcode39 组合总和 思路: 这题也是用回溯,但是考虑到不能重复,所以用一个currentNum记录当前遍历到哪了,按照大小顺序遍历防止重复就行。 class Solution { //11:10-11:18 public void dfs(int[] candidates,List<Li 阅读全文
posted @ 2024-11-29 11:32 vast_joy 阅读(1) 评论(0) 推荐(0) 编辑