Say I have an array of positive whole integers; I\'d like to manipulate the order so that the concatenation of the resultant array is the largest number possible. For exampl
Hint one: you concatenate strings, not integers. Hint two: itertools.permutations().
itertools.permutations()