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.
python new test framework is required. updated in this fork
Python random tests generate test inputs with spaces at the end of the string, and expect these spaces to be stripped. The instructions for this Kata make no mention of this requirement.
Needs tests that includes
_
, because a lot of tests use\w
in their regular expressions, which is defined as[_a-zA-Z0-9]
. They would fail on tests likefoo_
.