Skip to content

Latest commit

 

History

History
67 lines (30 loc) · 686 Bytes

README_EN.md

File metadata and controls

67 lines (30 loc) · 686 Bytes

中文文档

Description

Given a collection of integers that might contain duplicates, nums, return all possible subsets (the power set).

Note: The solution set must not contain duplicate subsets.

Example:

Input: [1,2,2]

Output:

[

  [2],

  [1],

  [1,2,2],

  [2,2],

  [1,2],

  []

]

Solutions

Python3

Java

...