RosettaCodeData/Task/Power-set/Jq/power-set-2.jq
2023-07-01 13:44:08 -04:00

7 lines
162 B
Text

# The power set of the empty set:
[] | powerset
# => [[]]
# The power set of the set which contains only the empty set:
[ [] ] | powerset
# => [[],[[]]]