Ad
  • Custom User Avatar

    This one was tricky for sure (tricky for me because i'm brand new to c#), but I managed to solve it in c#. I don't know how "correct" my code is, but I passed all the tests. What's strange is that I tested my code in rextester.com and whenever I tried to pass an array to UniqueInOrder, it kept failing at compilation. Ex: UniqueInOrder([1,2,2,3,3]) I'm a novice programmer relatively speaking, but I've been here long enough to see that a lot of katas have legitimate issues. This one might be one of them? It'll be interesting to see what a (1 kyu) person says. Surprised nobody has responded to you yet.

  • Custom User Avatar

    In C# it makes no sense because the function returns an IEnumerable but for some reason the test case expects a string. If the input parameter is an int array it will not work.