Ad
  • Custom User Avatar

    The issue that people are seeing is that (it appears) the Java version seems to not only count punctuation marks, but does so inconsistently. For example, when testing:

    assertEquals(43, core.run("SeOIOeNPjqoc'M'YLgOw"));

    Without counting punctuation, we would expect 39. If we count all punctuation, we would expect 45. It appears that that it's counting the * but not the '', which leaves us at 43. However, it appears later tests are counting no symbols / punctuation.

    Unless there's something I'm missing here, it seems like the tests for the kata are jacked up.