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.
If it times out it is either inefficient, either it gets lost in an infinite loop in some cases. Nobody can know, you don't provide any information. Please refer to the documentation: https://docs.codewars.com/training/troubleshooting/
No.
Multithreading reduces your runtime by a constant factor ( the number of threads ); you probably need to go from
O(n²)
toO(n log n)
..
From the Kata description.
Not a suggestion.