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 made a small update to the Python version so that an incorrect solution will terminate execution of any further tests. If this doesn't help, you may need to verify that your code isn't running an infinite loop. If you're not using a text editor/IDE, I'd recommend using one.
Prior to the "process terminated" message, there should be some kind of feedback printed to the console. Are you attempting this in JS or Python?
You can get a better idea of how much of a performance improvement is required by looking at how many of the final tests pass. There are
15
random tests for each tier (3
x3
to10
x10
); in total120
random tests.If you are completing most of the tests within the 12000 ms limit, then perhaps look for optimizations here or there. If your solution isn't passing most of the tests, then you may need to rethink your approach.