Skip to content

Latest commit

 

History

History
51 lines (26 loc) · 554 Bytes

File metadata and controls

51 lines (26 loc) · 554 Bytes

中文文档

Description

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]

]

Solutions

Python3

Java

...