Ad
  • Custom User Avatar

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

  • Custom User Avatar

    In the kata description, it is explicitly stated that the passed in array will only contain 0s 1s and 2s but in one of the test cases (Ruby), the array contains 4s as well. This edge case should be added to the kata description as well as what the method should do when it encounters invalid values such as this.

  • Custom User Avatar

    This seems more like an eight (8) kyu kata rather than the five (5) it currently is.

  • Custom User Avatar

    In the last test case, we have to ensure that an array containing items in the format: [1, "[", "]"] is the same structure as an array with items in the format ["[", "]", 1]. Why should it be this way seeing as the data type for each item isn't really the same as the other array?