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.
I considered the "case sensitive" part and do it that method for strings in consequence so it considers same letter and still fails for me...
This comment is hidden because it contains spoiler information about the solution
Because it's not his kata, it's g964's kata. You need to convince g964 to change the description to something better.
@Chrono79 Why not just clearly state the rule behind the sentence "sorting those numbers as string", which is quite cryptic to be honest (eg. "you must order each string as the sum of the ASCII values of its chars" OR "you must order each string by its length", etc...).
From your example I think the rule is "order the numbers by the decimal of its chars"
So if we have "91 18 72 36 92" it should be sorted like this "18 36 72 91 92" because 1 in "18" < 3 in "36" < 7 in "72" < 9 in "91" and 1 in "91" < 2 in "92".
Does this seems correct to you ?
This comment is hidden because it contains spoiler information about the solution
Will you stop complaining and:
About your question, see this other example:
"9 18 72 36"
"9 18 36 72"
"18 36 72 9"
This has been mentioned many times already, and this can't be resolved without admins retiring the kata manually (which is not something they have time for).
That is not possible.
Your answer is wrong for that test:
EAST NORTH SOUTH EAST NORTH SOUTH SOUTH EAST SOUTH NORTH -> EAST EAST SOUTH EAST
So, not a kata issue, check your code.
When reporting an issue, give all the details needed to check if there is an issue, claiming the tests are broken is not enough
Hi IBM0
The relevant part of the instructions is "Ignore letter case.". Specifically for your example, this means that
o
andO
are considered to be the same letter, so this test has a repeated letter and is therefore not an isogram. The test is correctly wanting an answer offalse
.