Join Slack
Powered by
Is there a standard library function to convert a ...
# getting-started
m
Mark
05/24/2020, 6:28 AM
Is there a standard library function to convert a sequence of sequences like this:
{{A}, {B, C}, {D, E}}
to
{{A, B, D}, {A, C, D}, {A, B, E}, {A, C, E}}
?
Mark
05/24/2020, 7:00 AM
Looks like it can be done with fold, with not too much difficulty.
k
Kroppeb
05/24/2020, 10:26 AM
There is no Cartesian product yet =/
Open in Slack
Previous
Next