Subsets II
Given an integer array nums
that may contain duplicates, return all possible subsets (the power set).
The solution set must not contain duplicate subsets. Return the solution in any order.
Example 1:
Input: nums = [1,2,2]
Output: [[],[1],[1,2],[1,2,2],[2],[2,2]]
Example 2:
Input: nums = [0]
Output: [[],[0]]
Constraints:
1 <= nums.length <= 10
-10 <= nums[i] <= 10
Solution
This question is an advanced version of Subsets, the only difference is that the input may contain duplicate elements.
So we can use the same approach as in Subsets to find the subsets of nums
. However, we still need to deduplicate the repeated elements.
In Deduplication we learned that we can deduplicate by sorting the candidates and avoiding using a duplicate candidate that we have not used previously, we will do the same here.
We wish to fill in the logics for backtracking1 template.
is_leaf
: all the paths is a subset ofnums
get_edges
: the potential edges are the numbers fromnums[start_index:]
or an empty edge that concludes the subsetis_valid
: check whether the candidatenums[i]
is the first appearance of that element in the current function call, that is,i > start_index and nums[i] == nums[i-1]
istrue
whennums[i]
is a duplicate, andfalse
otherwise.
Since at every node, a special "edge" is to "close" the subset, we can add a copy of path
to ans
regardless of the value of other states.
Then, when we get_edges
we can consider only the numbers from nums[start_index:]
, as we have visited nums[0:start_index]
.
Implementation
def subsetsWithDup(self, nums: List[int]) -> List[List[int]]:
def dfs(start_index, path):
ans.append(path[:]) # add a copy of the path to the result
for i in range(start_index, len(nums)):
# prune if needed
if i > start_index and nums[i] == nums[i-1]: # avoid duplicates
continue
path.append(nums[i])
dfs(i + 1, path)
path.pop()
ans = []
nums.sort()
dfs(0, [])
return ans
Ready to land your dream job?
Unlock your dream job with a 2-minute evaluator for a personalized learning plan!
Start EvaluatorWhich type of traversal does breadth first search do?
Recommended Readings
LeetCode Patterns Your Personal Dijkstra's Algorithm to Landing Your Dream Job The goal of AlgoMonster is to help you get a job in the shortest amount of time possible in a data driven way We compiled datasets of tech interview problems and broke them down by patterns This way we
Recursion Recursion is one of the most important concepts in computer science Simply speaking recursion is the process of a function calling itself Using a real life analogy imagine a scenario where you invite your friends to lunch https algomonster s3 us east 2 amazonaws com recursion jpg You first
Runtime Overview When learning about algorithms and data structures you'll frequently encounter the term time complexity This concept is fundamental in computer science and offers insights into how long an algorithm takes to complete given a certain input size What is Time Complexity Time complexity represents the amount of time
Want a Structured Path to Master System Design Too? Don’t Miss This!