Given, {A,B,C} {D,E} {X,Y,Z}
I want the following result: • {A,D,X} • {A,D,Y} • {A,D,Z} • {A,E,X} • {A,E,Y} • {A,E,Z} • {B,D,X} • {B,D,Y} • {B,D,Z} • {B,E,X} • {B,E,Y} • {B,E,Z} • {C,D,X} • {C,D,Y} • {C,D,Z} • {C,E,X} • {C,E,Y} • {C,E,Z}
Can you please point me to the set operator which does this? I am also trying to find the algorithm for the above, given "n" number of Sets with varying number of values in them.