LeetCode 90. Subsets II
Question
Given an integer array nums
that may contain duplicates, return all possible subsets (the power set).
The solution set must not contain duplicate subsets. Return the solution in any order.
Example 1:
1 | Input: nums = [1,2,2] |
Example 2:
1 | Input: nums = [0] |
Constraints:
1 <= nums.length <= 10
-10 <= nums[i] <= 10
Source: https://leetcode.com/problems/subsets-ii/
Solution
Set is a kind of combination without constraint of length.
The given array may contain duplicates. So we pre-sort nums
, which enables us to conveninently skip duplicate elements on DFS layers.
1 | private void dfs(int[] sortedNums, int startPos, LinkedList<Integer> current, List<List<Integer>> result) { |
LeetCode 90. Subsets II