Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
max minus min one liner solution in Clear category for The Most Numbers by pseudorandomcoder
def checkio(*args):
return max(args) - min(args) if args else 0
July 14, 2018