Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
lazy brute solution in Clear category for Bigger Together by ssk8
from itertools import permutations
def bigger_together(ints):
ints = [str(x) for x in ints]
p = [int(''.join(x)) for x in permutations(ints)]
return max(p)-min(p)
June 26, 2018
Comments: