Ad
  • Custom User Avatar

    I think this kata needs more test cases

  • Custom User Avatar

    ignoredTags is always undefined.
    No test cases for inserted BBCodes

  • Custom User Avatar
  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar

    I have this error too

  • Custom User Avatar

    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?

  • Custom User Avatar

    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.

  • Custom User Avatar

    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?