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.
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.