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.
This kata does not perform normal brace matching: it considers
[)
a brace match that is invalid. In any normal brace matching if braces are unmatched it just goes till the end.The kata's brace matching behaviour is flawed anyway as it will fail to cases like
[)]
.(Also, the kata does not specify what are considered open/close brace characters, which are
[({
and])}
respectively.)There are no random tests.