I have multi list:
list 1 = [1,2,3]
list 2 = [6,7,8,9]
How to get new list by pair:
new list = [1,2]; [1,3]; [2,3]; [6,7]; [6,8]; [6,9]; [7,8]; [7,9]; [8,9]
I have multi list:
list 1 = [1,2,3]
list 2 = [6,7,8,9]
How to get new list by pair:
new list = [1,2]; [1,3]; [2,3]; [6,7]; [6,8]; [6,9]; [7,8]; [7,9]; [8,9]
Thank you so much ! <3