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.
Unfortunately, this is not tail-recursive. All of the intermediate calls need to be kept on the stack because they still have work to do, specifically: adding 2 to the result of the recursive call they are waiting on.
Description: "... n will always be a non-negative number ..."
Tail recursion gets optimized at compile time anyway.
This comment is hidden because it contains spoiler information about the solution
the only time it fails is for n<0 with java.lang.NegativeArraySizeException. That beeing said, the case is not covered in the description, and I think is a sane result for that value of n.