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.
So you didn't solve it. See there: https://docs.codewars.com/training/troubleshooting/
Nothing is wrong with random tests. What is wrong is your code, that produces the following error, as you can see:
Which means there are too many recursive calls. You can make a research online to try and see how you could handle that, though, if I may give you an advice: don't use recursion here. Recursive solutions are generally bad (bad performance + crash prone) when recursion is too deep.