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.
Shouldn't that module be imported somewhere else then? Either in the tests or in the predefined space?
This comment is hidden because it contains spoiler information about the solution
The
Node
class is not defined in the tests. To use the run tests button, one has to define their ownNode
.I get errors about a global 'string' not being defined when it runs the random tests, but not in the predefined tests. My solution doesn't use the name 'string' anywhere.
This comment is hidden because it contains spoiler information about the solution
I might've used
reversed(roman)
instead oflist(roman)[::1]
because it returns an iterator not a copy of the input, but overall very clever processing it backwards.