I have a list of integers
keys = [18, 99, 86, 61, 66, 81, 98, 19, 91, 16, 69, 88, 89, 68, 11, 96]
I'd like to find all permatutations of this list such that for each permutation
elements 0 through 3 add up to 264,
elements 4 through 7 add up to 264,
elements 8 through 11 add up to 264 and
elements 12 through 15 ad up to 264.
Currently I have the following strategy
Calculate all permutations using itertools.permutations
Check which of the permutations satisfy my conditions
Is there another strategy with better performance?
You can use recursion with a generator:
Due to the large number of possible combinations, this solution will hang if you try to load all the generator values into a list i.e
list(combos(keys))
. However, you can iterate overl
a desired number of times to access the produced results:Output: