Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
That's because of Python's duck typing –
bool
is a subclass ofint
.And since the description asks to return
0
when the numbers are equal andFalse
is equivalent to0
, this is acceptable.well, that'd be pretty anti-pythonic, tho... ;)
but false extending
0
, if the expected answer is 0, that's still correct.proof: this passes this fixed test:
test.assert_equals(close_compare(5, 5), 0)