Skip to content

Commit

Permalink
Create 90. Subsets II.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahesh-addagatla authored Jan 8, 2025
1 parent 6927baf commit a7792be
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions 90. Subsets II.java
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);
}
}
}

0 comments on commit a7792be

Please sign in to comment.