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
I'm not sure I understand your question @AbdulSalphan but there are 2 things for you to consider:
the "maximum number value for n" in the random testcases - this is something like 10,000-20,000 depending on language (15,000 for Python)
the number/amount of random tests performed - again, with Python this is currently = 110
So even if your solution is taking, say, 1 second for a single instance of a test with
n = 20,000
, you need to understand that may you have to multiply that number by, at worst,110
to get the approximate total test run-time, since that is how many random tests will be performed.in php: 100 random tests up to 10000