Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple for loop solution in Clear category for The Most Numbers by PawlakBartosz43
def checkio(*args):
if(len(args) == 0):
return 0
min = args[0]
max = args[0]
for i in args:
if(i > max):
max = i
if(i < min):
min = i
return (max - min)
Oct. 31, 2016