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.
Nice recursive solution. I didn't think of this solution. It took me some time to understand what the creator of the Kata meant. The description was kinda vague.
It is a good solution. I would suggest that you do: input.ToLower() .ToCharArray() .ToList() etc. Then you have more readable code. If you look at my solution you see how it can be achieved without using the dictionary. But it is still a good solution :-)
Your solution looks almost as mine only i would recommend to implement the transformations as extensions :) looks more clean. For the rest good job!
Sweet! Same solution :)
Thank you for pointing that out! I'll have a look ...
Damn, I didn't think about this approach. This is going to my favourites! Love the LINQ style :-) ...
Thanks! My goal was to make the entrance code as clean as possible and really easy to read.
Good point, its indeed a sum and not an assignment.
Same solution? Ha! Ur looks fine to me as well :-)!
Thanks for the feedback, good point. I wasn't aware of that.