Given a set {a,b,c,d} What's a good way to produce {a,b,c,d,ab,ac,ad,bc,bd,cd,abc,abd,abcd}?
A recursive algorithm, I think, but maybe some weird lambda thing would work better. I'm using python.
|
|
|||||||
|
|
|
The Python
Output:
If you don't like that empty tuple at the beginning, you can just change the |
||
|
|
|
|
Here is more code for a powerset. This is written from scratch:
Mark Rushakoff's comment is applicable here: "If you don't like that empty tuple at the beginning, on."you can just change the range statement to range(1, len(s)+1) to avoid a 0-length combination", except in my case you change "for i in range(1 << x)" to "for i in range(1, 1 << x)". |
|||
|
|
|
|
If you're looking for a quick answer, I just searched "python power set" on google and came up with this: Python Power Set Generator Here's a copy-paste from the code in that page:
This can be used like this:
Now r is a list of all the elements you wanted, and can be sorted and printed:
|
||
|
|
|
|
|
||
|
|