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