"product " of 2 lists
- Subject: "product " of 2 lists
- From: Adam Majewski
- Date: Wed, 28 Jul 2010 18:58:18 +0000 (UTC)
Hi,
I have two lists :
[a,b,c]
[d,e]
I need a new list :
[[a,b,d],[a,c,d],[b,c,d],[a,b,e],[a,c,e],[b,c,e]]
How can I compute it ?
TIA
Adam