Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for The Most Numbers by krzysztof.gonda
def get_first_from_sorted(args, reverse):
if len(args) == 1:
args = iter(args[0])
return sorted(args, reverse=reverse)[0]
def min(*args):
return get_first_from_sorted(args, False)
def max(*args):
return get_first_from_sorted(args, True)
def checkio(*args):
if(len(args)==0): return 0
return (max(args) - min(args))
#These "asserts" using only for self-checking and not necessary for auto-testing
if __name__ == '__main__':
def almost_equal(checked, correct, significant_digits):
precision = 0.1 ** significant_digits
return correct - precision < checked < correct + precision
assert almost_equal(checkio(1, 2, 3), 2, 3), "3-1=2"
assert almost_equal(checkio(5, -5), 10, 3), "5-(-5)=10"
assert almost_equal(checkio(10.2, -2.2, 0, 1.1, 0.5), 12.4, 3), "10.2-(-2.2)=12.4"
assert almost_equal(checkio(), 0, 3), "Empty"
print("Coding complete? Click 'Check' to review your tests and earn cool rewards!")
Nov. 18, 2017