I have an string array
{\"ted\", \"williams\", \"golden\", \"voice\", \"radio\"}
and I want all possible combinations of these keywords in
Here's a hint:
All-Subsets(X) = {union for all y in X: All-Subsets(X-y)} union {X}