47. Permutations II
https://leetcode.com/problems/permutations-ii/
Related problems
46-permutations
78-subsets
90-subsets-ii
39-combination-sum
---
Given a collection of numbers that might contain duplicates, return all possible unique permutations.
Example:
Input: [1,1,2] Output: [ [1,1,2], [1,2,1], [2,1,1] ]---
Related problems
46-permutations
78-subsets
90-subsets-ii
39-combination-sum
---