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 had to comment on this as it's an incredibly inefficient solution for one simple reason.
You are calling strlen(walk) twice inside the loop and when you call strlen(walk) you are basically iterating over whole string.
One small change is required to change time complecity of this algorithm from O(2n^2) to O(2n):
Aside from that there is completely no reason to call 'if (strlen(walk) != 10) return false;' inside the loop. Just move it before the loop.