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.
approx_equals
should be used instead ofassert_equals
due to possibilities of rounding errorsThe input validation is worthless and should be removed
You should try to Rephrase the description, its kinda confusing
Probably here is missprint and it should be
IMO if any of the arguments are
None
then the return value should beFalse
rather thanNone
.Python new test framework should be used in sample test part with
it
insidedescribe
block (here's some info)Parameter name should be
snake_case
as wellNo random tests. You should read this documentation on the topic.
Python naming convention requires
snake_case
for the function name.