Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 385 Bytes

File metadata and controls

20 lines (12 loc) · 385 Bytes

241.Subsets II

Description

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

Example

Input: nums = [1, 2, 3]
Output: [[3], [1], [2], [1, 2, 3], [1, 3], [2, 3], [1, 2], []]

Note

  • The solution set must not contain duplicate subsets.

From

LeetCode