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.
Didn't work for me ¯_(ツ)_/¯
Removed
using NUnit.Framework;
from initial solution.Fixed and closed.
I fixed it. This issue can be closed.
removed. Thanks for your kata!
Typo is fixed. remove the issue please.
I struggled a bit thinking about how I would implement this using yield-return. I settled on generating a big cache with a SortedSet instead.
Your .Skip(n).First() could just be .ElementAt(n). Regardless, a big +1 for yield-return using Queues. Great job! :)
?
Yes you're right....the sin of copy and paste :-)
This comment is hidden because it contains spoiler information about the solution
sample code contains superfluous "using NUnut.Framework;" statement
return in sample code is written as "retrun".
InvertTree method should be declared 'static' to match the calls made in test methods.