摘要: 1 题目 https://leetcode-cn.com/problems/permutations-ii/ 2 题意 给定一个可包含重复数字的序列,返回所有不重复的全排列。 示例: 输入: [1,1,2] 输出: [ [1,1,2], [1,2,1], [2,1,1] ] 3 思路 author' 阅读全文
posted @ 2020-09-18 11:11 偷懒人 阅读(118) 评论(0) 推荐(0) 编辑