here two different solutions.
for me they look same but first fail and second pass
WHY!!!!!!
def checkio(*args):
if args:
return max(*args) - min(*args)
else:
return 0
def checkio(*args):
return 0 if len(args)==0 else (max(args)-min(args))
Created at: 2019/04/20 22:15; Updated at: 2019/04/21 07:15