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.
Got it, thanks!
There are multiple tests that expect the result to be
EE
, and multiple tests that expect the result to beI
.I can assure you that no two tests expect different output for the same input, and no test expects different output depending on the code of your solution.
I suppose different tests fail in your two cases.
I would suggest printing the input data before analysis.
OK... I love this kata, and I've got it mostly working using a k-means algorithm with a solution specific centroid initializer in C#. I am getting an odd issue with the testShortMessages input bit string of 101.
To troubleshoot this, just before returning my dot-dash sequence, I override my output on the input of 101:
Any which way I solve this, it appears I will always fail one of these test cases... any thoughts?
Awsome Kata!!! I just wish I could submit it as I am also getting the "763 but was 872" error.
It is indeed a clever solution and may be a best practice for “shops” that use C#/LINQ. However, if you have a “shop” with diverse developer backgrounds, or you need to port code to other languages on occasion, Classic C# (no LINQ) would probably be a best practice.