Light Mode
Dark Mode
most numbers. what a difference

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: April 20, 2019, 10:15 p.m.
Updated: April 21, 2019, 7:15 a.m.
0
5
User avatar
alexkhesin1975