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.
Yeah I ran into this issue as well it is really quite silly
Number of tests are scaled as per the total time (runtime + compilation time) of languages hence the required time complexity is roughly same across all languages.
and I've done this in python.
The author should have knowon that Python is slow and not capable of doing all of this under 12000 ms
instead of putting unnecessary tests that are impossible to do under 12000 ms
My code is just 2 lines (could have been 1 but this is for better excution time) and it still gives
me an
Execution Timed Out (12000 ms)
Error.I'm not using for loop, or while loop, or anything that could be
possibly slowing down the program, I am just using math library (which is pure C) with len, strip functions
(which are pure C too)