Mailchimp audience tooling may need to enumerate distinct combinations of integer-based segment identifiers. Given an integer list that may contain duplicate values, return all unique subsets, including the empty subset and the full list.
A subset may contain each occurrence at most once, but subsets with identical values must appear only once. The output order may be any deterministic order, and the examples use lexicographic depth-first order.
Implement subsets_with_duplicates(nums), where nums is a list of integers. Return a list containing lists of integers. Each returned list must represent a unique subset, and no duplicate subset may be included.
def subsets_with_duplicates(nums):