Oneliner solution in Clear category for The Most Numbers by clavierp
def checkio(*l): return max(l) - min(l) if l else 0
May 22, 2019