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 second one is not an issue. The first one is fixed.
Issue with function name fixed. Now it is the same as in the tests.
For Python, testcases do not match given function name. Also, a time limit and max string size would help in the description and possiably change the level of this kata. Overall, pretty fun!
Very clean. Nice solution!
You didn't really get where is laying your current problem. ;) Your code isn't failing on the efficiency side, it's failing on the path reconstruction side (I've been there too... ;o )
Finding what you're doing wrong at this point might be a bit uneasy, but that's the "only" real difficulty of the kata (once you know how to get rid of the performances problem)
good luck! ;)
This comment is hidden because it contains spoiler information about the solution
You're not going to get fib(500) with recursion.
:)
while I don't see your current solution, it's probably have to do with how you check if the node you're looking at has been visited already
This comment is hidden because it contains spoiler information about the solution