Can I combine two sets of combinations?
I want to combine/merge two sets of numbers into 1 set.Is this possible?
EX. set 1- (1,2)
set 2- (3,4)
set 3- (5,6)
set 4- (7,8)
into a result of (1,2,3,4)
(1,2,5,6)
(1,2,7,8)
(3,4,5,6)
(3,4,7,8)
(5,6,7,8 )