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.
Haven't noticed that difference, the languages I did this kata in had that example and I assumed they were consistent. Changed the description so all languages have the
moOse
example now.This example (a word with a letter that repeats in a different case, and no letters that repeat in the same case) would have been very helpful to have! It implicitly clarifies the statement. However I was very confused when I received your reply until I noticed that kata descriptions and test cases can also differ depending on the language it's viewed in. In my case this example is missing from the C++ description (and most other languages in fact), whereas it's present in the Javascript version.
C++:
Javascript:
Consistency is important! However my advice to other warriors reading this would be to check the other language test cases for hints, just in case. :)
Nice
The example in the description shows what "ignore letter case" means:
There are two
o
in"moOse"
(ignoring letter case they're equal)."Ignore letter case." is a vague, and possibly contradictory, statement. Please clarify to something akin to "Assume upper and lower-case letters count as the same letter."
If you have to handle letter casing to reach the correct solution then you're not ignoring them, at least from a certain context.