Here's my code:
def checkio(*args):
if args:
return (max(args) - min(args))
else:
return '0'
And I am getting the error:
TypeError: '<' not supported between instances of 'float' and 'str'
almost_equal, 11
<module>, 16
Does this mean there is an error in the self-checking code?
Created at: 2018/12/31 01:54; Updated at: 2018/12/31 10:07