Skip to content

Commit 76e6710

Browse files
refactor 90
1 parent d4859ff commit 76e6710

File tree

1 file changed

+3
-2
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+3
-2
lines changed

src/main/java/com/fishercoder/solutions/_90.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
import java.util.List;
77
import java.util.Set;
88

9-
/**90. Subsets II
9+
/**
10+
* 90. Subsets II
1011
*
1112
*Given a collection of integers that might contain duplicates, nums, return all possible subsets.
1213
Note: The solution set must not contain duplicate subsets.
@@ -49,7 +50,7 @@ public static List<List<Integer>> subsetsWithDup(int[] nums) {
4950
return result;
5051
}
5152
}
52-
53+
5354
public static class Solution2 {
5455
public List<List<Integer>> subsetsWithDup(int[] nums) {
5556
List<List<Integer>> result = new ArrayList();

0 commit comments

Comments
 (0)