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.
This comment is hidden because it contains spoiler information about the solution
Hi :) Words is an array of pointers, so sizeof((*words)/sizeof(char)) is basically the size of a pointer divided by the size of a char. In this case, sizeof(char *)/sizeof(char). Basically you're not allocating enough memory for most of the tests.
I don't know if that helps clear things up