Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for The Most Numbers by PawelBubak
def checkio(*args):
list = []
if args:
for i in args:
list[len(list):] = [i]
x = max(list)
y = min(list)
wynik = x - y
else:
wynik = 0
return wynik
Oct. 28, 2016