Ad
  • Default User Avatar

    You should add random test cases to avoid hard coded solutions.

  • Custom User Avatar

    I see, I will think about it. Thank you.

  • Default User Avatar

    I posted in the discourse of your kata.

  • Default User Avatar

    issue part:

    suggestion part:

    Since your kata has a so low satisfaction rate that there are almost no chances it goes out of beta and that other kata exists with the same (approximately) task to do, I'd suggest you unpublish this one and publish a translation of the one that is the most similar from the two above. But if the author isn't active anymore, you'll need a moderator to "hard copy" your translation directly in the edit panel (but note that you won't recieve honor/% progress, this way, unfortunately).

  • Custom User Avatar

    Hi, I have published my Kata for a while now and fixed all the suggestions/issues. What can I do in order to get it approved?

  • Custom User Avatar

    Thanks. Indeed, the description was hard to follow but it should be better now.

  • Custom User Avatar

    Looks nice! I'll take a stab later.

    The description really needs some paragraphs and formatting. Currently it's just a wall of text and it's hard to parse anything from it.

  • Custom User Avatar

    I have updated Kata now.

  • Custom User Avatar

    Good point. I thought Kata could be when it is about an elegant way to write an algorithm but I can surely reformulate it.

  • Custom User Avatar

    Thank you for pointing out. I have fixed that.

  • Custom User Avatar

    A kata which requires one to return just one value is not a kata at all (especially since the answer is already in the sample tests).

  • Custom User Avatar

    The class is named LuckyTickets while the Test expects LuckyTicket.

    Also, GetLuckyTickets is private, so nothing can access the method.

  • Custom User Avatar

    Thanks, I must forgot to copy the right version.

  • Custom User Avatar

    /home/codewarrior/fixture.cs(11,30): error CS0103: The name 'LuckyTicket' does not exist in the current context

    Assert.AreEqual(55252, GetLuckyTickets()); should be Assert.AreEqual(55252, LuckyTickets.GetLuckyTickets()); instead.