1
vote
Recursively generate ordered substrings from an ordered sequence of chars?
Actually your question is to list all subsets from a given set.
Considering the set {a,a,a,d,d,d,c,g,h,z,z}, your goal is to list all its unique subsets in order, except the empty set:
{a}
…
