摘要: class Solution { //全排列问题 Set<List<Character>> res = new HashSet<>(); public String[] permutation(String s) { char []strs = s.toCharArray(); int len = 阅读全文
posted @ 2020-07-26 19:29 浅滩浅 阅读(89) 评论(0) 推荐(0)