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.
What akar-0 is saying is that, for the input
hrudttjxmjztcolmdkucrxstjszxcxckjlhrtuo
the expected/correct answer is indeedFalse
, i.e. you cannot make a palindrome from this string.Therefore, if you are failing on this test it is your code that must be returning
True
instead of the expected/correct answerFalse
.Check that your implementation of your logic is correct - maybe you are missing something.
The answer for this input is
false
indeed. That's what the tests expect, so you are missing something. I mark your message with a spoiler flag since you give a key to solve the kata. Please think about it next time.