2
votes
What’t the best solution for creating subsets of a set of characters?
The recursive approach -- the subsets of "abc" come in two types: those which are subsets of "bc", and those which are "a" plus a subset of "bc". So if you know the subsets of "bc", it's easy.
…
