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.
What is your point?
This comment is hidden because it contains spoiler information about the solution
what is forged clothes?
Thanks for this kata. 2 years ago, I had this kata bookmarked because I couldn't solve it. I forgot about it for years. Tried again today and solved it in under 30 minutes.
Thank you! It's been 2 years since I started practicing on this platform. Completing this kata was the final step for me to get promoted to 2nd kyu. This was really an easy one. My 500th kata.
damn good kata!
The amount of steps to complete the code felt more like a 5kyu than a 6kyu problem.
manually creating the dictionary is kinda annoying. Otherwise good kata
There would be time complexity issues if we have more elements to sort
So we are forced to come up with better solutions.
One of the basic test for C#.
"Month of birth" declared as "September"
instead of the usual shorthand three letter "Sep"
string[] data = new string[] { "Andrew", "Robert", "Lee", "02-September-1981", "M" };
string[] data = new string[] { "Andrew", "Robert", "Lee", "02-Sep-1981", "M" };
had to manually edit the basic test and change it to "Sep".
I hope this is not considered as "cheating".
Really helps to write it down on paper
so you could easier see the pattern.
It would be more challenging if the numbers was higher than 100.
but still a good 6kyu kata anyways.
Very enjoyable kata.
I used the same strategy I used in "Valid Braces"
the only one solution I could think of.
Glad I remembered it.
This is actually not an uncommon programming problem
and used in many coding interviews.
I understood it. I already solve the kata.
but before that I was just failing to understand the kata description.
Loading more items...