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.
No feedback when printing the input to the console? Then declare a static counter somewhere, update it at each call of your code, and make your solution throw an error just after you printed the critical input. (hopefully, the tests are executed in order...? :s )
seek for an infinite loop.
hint: on cw, the best way to track those is to print some stuff to the console from within each of your loops (something different for each one of them). This way, you'll reach the buffer limit error before the timeout, and you'll be able to identify the loop that is causing trouble.