in reply to Re: results from pairs combination
in thread results from pairs combination
Thanks for the quick reply
The idea is not the order but each pair represents the relations between the elements so for example:
@pairs=("a,b","c,b","d,f","e,b","f,g");
The results should be:
"a,b","c,b","e,b"
"d,f","f,g";
But the pairs can appear in any order and combination.