I have a list that contains 16 unique numbers:
list = [1, 2, 3, 4, 5, 6, 7,...,16]
I want to iterate over all possible combinations of 4 of the numbers, eg:
iterate1 = [1, 2, 3, 4]
iterate2 = [1, 2, 3, 5]
iterate3 = [1, 2, 3, 6]
.
.
.
Numbers in the list cannot repeat.