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.
the factorial is overflowing at some point. Try using 100, 200 and 1000. They're using numbers this large in their test cases
I was wondering the same thing, so I ran a little experiment to understand how that's working:
When I run this with an input of 10, the print statement on line 3 produces a series of numbers counting down from 10, each in an array (i.e. [10], [9], and so on). The final iteration returns nil, which is triggered by the guard statement in line 2, which allows the recursion to stop running. It is the exit mechanism. I hope that helps.
Hi, I'm using Swift and I get a "exit code 132" when I run the attempt. No problem at all with the running the sample tests. There is no information provided on what is causing the issue. Any ideas?