Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Repeeeaaat solution in Clear category for Bigger Together by StefanPochmann
def bigger_together(ints):
S = sorted(map(str, ints), key=lambda s: s * 99)
return int(''.join(S[::-1])) - int(''.join(S))
July 30, 2017
Comments: