Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
the most numbers solution in Uncategorized category for The Most Numbers by sebastian.okseniuk
def checkio(*args):
if len(args) != 0:
wartosc = max(args) - min(args)
print(wartosc)
return wartosc
else: return 0
Dec. 2, 2015