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 increment string again to check it in the outer loop --> out of bounds.
string
Not a kata issue.
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.
Loading collection data...
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.
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.