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.
Your code is doing out-of-bounds reads and thus has undefined behaviour. You are incrementing
string
until you read the NULL terminator in the inner loop and then incrementstring
again to check it in the outer loop --> out of bounds.Not a kata issue.
This comment is hidden because it contains spoiler information about the solution
Please read this: https://docs.codewars.com/training/troubleshooting and provide more info, language? Your code?
Also read the post below, maybe it's the same problem.
This comment is hidden because it contains spoiler information about the solution