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 CyrylWilczek
def checkio(*args):
if (not args):
answer = 0
else:
answer = max(args) - min(args)
return answer
Nov. 5, 2017