| Author |
Comment/Response |
Angel
|
05/29/07 12:17pm
Hi,
A have the the following set :
x = { {1, 2, 3, 4}, {5,3}, {6,2,1}, {7,8,9}, {10,9} ... }
And I need to separate in subsets like this :
y = { { {1,2,3,4}, {5,3}, {6,2,1} }, { {7,8,9}, {10,9} } }
Note that : {1,2,3,4} intersection {5,3} != { } and {1,2,3,4} inter {5,3} <> { } ... and {7,8,9} inter {10,9} != { }
How could I create this cluster ?
Thanks
URL: , |
|