First solution in Clear category for The Most Numbers by stics_232
def checkio(*args): return max(*args) - min(*args) if len(args) > 1 else 0
Oct. 30, 2020