Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Bigger Together by Rounin
import functools
def bigger_together(ints):
ints = list(sorted(map(str, ints), key=functools.cmp_to_key(lambda x, y: int(str(x)+str(y)) - int(str(y)+str(x)))))
return int(''.join(ints[::-1])) - int(''.join(ints))
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert bigger_together([1,2,3,4]) == 3087, "4321 - 1234"
assert bigger_together([1,2,3,4, 11, 12]) == 32099877, "43212111 - 11112234"
assert bigger_together([0, 1]) == 9, "10 - 01"
assert bigger_together([100]) == 0, "100 - 100"
print('Done! I feel like you good enough to click Check')
Aug. 3, 2017