• yeaaaaah - one line

Question related to mission The Most Numbers

 
def checkio(*args):
    return 0 if len(args)==0 else (max(args)-min(args))
10