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.
This comment is hidden because it contains spoiler information about the solution
There are empty values
This comment is hidden because it contains spoiler information about the solution
To my opinion if you would solve the kata in C language you would see that in C it's not simple because of the exact dynamically allocation that you need
Nice
This comment is hidden because it contains spoiler information about the solution
Thanks for the tip, I love free points!
Please stop complaining about kata ranks (not you specifically, just everyone). Changing ranks is expensive, not worth it, and not going to happen. Just enjoy the cheap points.
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
That shouldn't be 4 kyu. Maybe 7
Description: "A string representation of an integer will contain no characters besides the ten numerals "0" to "9".".
But have this error: System.FormatException : The value could not be parsed.
Because of a is empty. Test 6
Using recursion is allowed, but naive recursive solution is going to fail because of too many recursive calls.
Most of solutions to this kata use recursion, but they use an algorithm which greatly reduces recursion depth.
Test is approved, but the attempt is not: "Stack overflow. Repeat 74808 times". Is using recursion not allowed?
Math.Pow(-1, i) is clever. Forgot about this option
Loading more items...