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.
I think this kata needs more test cases
ignoredTags is always undefined.
No test cases for inserted BBCodes
Not for juniors
This comment is hidden because it contains spoiler information about the solution
I have this error too
I have question, if I have trees like: { value: 'b', left: { value: 'a', left: {}, right: {} }, right: { value: 'p', left: { value: 'k', left: { value: 'c', left: {}, right: {} }, right: { value: 'm', left: {}, right: {} } }, right: { value: 'w', left: { value: 't', left: {}, right: {} }, right: { value: 'z', left: {}, right: {} } } } } (it seems like I'm a addict, but it's really interested for me ;)) and now I want to remove 'p', what is tree I will have in the result?
very strange situation happends to me. When I run single test from test cases as "Run Tests" - it seems like working, but when I submit solution, the same case give me error, as it does not have any solution.
I have question, at first test case I got these arguments: {"0":["ab","xyzc","x"],"1":"length"} and expected result is ["x","ab","xyzc"] and it's ok to understand. But at "Should handle custom sorting" test case I got "0":["yadf","abc","d"],"1":"length"} and expected result is ["yadf","abc","d"]. In both cases I need to sort by length, but in first one I need to sort by ASC, nd in second one I need sort by DESC. How could I detect in which case I need to sort?