We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4859ff commit 76e6710Copy full SHA for 76e6710
src/main/java/com/fishercoder/solutions/_90.java
@@ -6,7 +6,8 @@
6
import java.util.List;
7
import java.util.Set;
8
9
-/**90. Subsets II
+/**
10
+ * 90. Subsets II
11
*
12
*Given a collection of integers that might contain duplicates, nums, return all possible subsets.
13
Note: The solution set must not contain duplicate subsets.
@@ -49,7 +50,7 @@ public static List<List<Integer>> subsetsWithDup(int[] nums) {
49
50
return result;
51
}
52
-
53
+
54
public static class Solution2 {
55
public List<List<Integer>> subsetsWithDup(int[] nums) {
56
List<List<Integer>> result = new ArrayList();
0 commit comments