-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6927baf
commit a7792be
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
class Solution { | ||
public List<List<Integer>> subsetsWithDup(int[] nums) { | ||
Arrays.sort(nums); | ||
List<List<Integer>> ans = new ArrayList<>(); | ||
List<Integer> num = new ArrayList<>(); | ||
subsetWithDup(0,nums,num,ans); | ||
return ans; | ||
} | ||
public static void subsetWithDup(int offset,int[] nums ,List<Integer> num, List<List<Integer>> ans){ | ||
ans.add(new ArrayList<>(num)); | ||
for(int i=offset;i<nums.length;i++){ | ||
if(i!=offset && nums[i]==nums[i-1]) continue; | ||
num.add(nums[i]); | ||
subsetWithDup(i+1,nums,num,ans); | ||
num.remove(num.size()-1); | ||
} | ||
} | ||
} |