摘要:
回溯 class Solution { private List<List<Integer>> ans = new LinkedList<>(); public List<List<Integer>> permute(int[] nums) { backTrace(nums, 0); return 阅读全文
摘要:
回溯法 class Solution { // 一共9行,一行9个数字 private boolean[][] line = new boolean[9][9]; // 一共9列,一列9个数字 private boolean[][] column = new boolean[9][9]; // 一共 阅读全文
摘要:
class Solution { public List<String> generateParenthesis(int n) { List<String> ans = new LinkedList<>(); backtrack(ans, n, 0, ""); return ans; } // 回溯 阅读全文