Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
The Most Numbers solution in Clear category for The Most Numbers by michal_bien
def checkio(*args):
if len(args) == 0:
return 0
return max(args)-min(args)
Oct. 6, 2016