Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for The Most Numbers by macfreek
#!/usr/bin/env python3.3
# -*- coding: utf-8 -*-
def checkio(*args):
try:
return max(args) - min(args)
except ValueError:
return 0
#These "asserts" using only for self-checking and not necessary for auto-testing
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"
April 17, 2014
Comments: