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
This comment is hidden because it contains spoiler information about the solution
Not sure if there is a reason to int.Parse and ToString() an already int.
Seems like a waste of resources when you could make the distinction in the if statement and directly cast to int.
This is the way
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
I'm not a fan of naming the dictionary "lang". Dictionaries should be named after their content, not their key.
For example: if you had a Dictionary<int, string> and the ints were IDs. You'd name if after what the strings are, like employees or models. You wouldn't name the Dictionary IDs.
This comment is hidden because it contains spoiler information about the solution
We all wish to be as glorious as If Else Mountain
For readability, you should use Count for lists and Length for arrays. Arrays are always the same length. A list's count can change as you add items to it.