in reply to cartesian product preserving order
We aware that with this approach taking the product using one of the partial products will be slightly different than with 2 of the original lists. I.E.
A partial list will look like:
[a,1],[a,2],[a,3],[b,1],[b,2],[b,3]
Whereas an original list will be like:
(-, +, *)
So when using a partial product be careful not to end up with something like:
[[a,1],-]
Hope this helps
|
|---|