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.
Thank you very much!
It's the recursion that makes it clear.
FindAll(3,10) == FindAll(2,9)+FindAll(2,8)+FindAll(2,7)+FindAll(2,6)+etc
======XX==========1XX===========2XX============3XX=========4XX========5XX===6XX===7XX==...
Could someone pls explain how this works?
Especially the recursion part please!
This comment is hidden because it contains spoiler information about the solution
Awesome Kata, thank you very much!
Very nice kata! Tricky part is finding out when it is 'impossible to decode'. Look at the second last post in this discussion and expand it. This might help you!
Not a kata issue, you passed all tests until your code timed out. It's a problem with your code not being fast enough to pass all the tests (hint: the part where you check for primality can be improved).
This comment is hidden because it contains spoiler information about the solution