1.题目描述
Given a collection of integers that might contain duplicates, nums, return all possible subsets (the power set).
给定一个可能包含重复元素的整数数组 nums,返回该数组所有可能的子集(幂集)。
Note: The solution set must not contain duplicate subsets.
说明:解集不能包含重复的子集。
Example:
Input: [1,2,2]
Output:
[
[2],
[1],
[1,2,2],
[2,2],
[1,2],
[]
]
2.Solutions
1 | public static List<List<Integer>> subsetsWithDup(int[] nums) { |
参考:78. Subsets