Let's say i have two sets: Set_A = {1,2,3} and Set_B = {4,5,6}.
I am looking two find all possible combinations between the elements of the two sets but without changing the order of the elements of each set.
For example (1,2,3,4,5,6) is a valid combination. But (2,1,3,4,5,6) is not valid. So the elements of Set_A must be ordered within the combination so the elements of Set_B.