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.
Same is mine solution - in bash it takes 5s on my VM box, and fails test with time>12000. Sad (
Your code contains undefined behavior:
you are not checking the bounds of
args
in this loop. It may read past the end of the array.In C, there is 100 tests with
n
choosen randomly between 5k and 100k.