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.
You should add random test cases to avoid hard coded solutions.
I see, I will think about it. Thank you.
I posted in the discourse of your kata.
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).
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?
Thanks. Indeed, the description was hard to follow but it should be better now.
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.
I have updated Kata now.
Good point. I thought Kata could be when it is about an elegant way to write an algorithm but I can surely reformulate it.
Thank you for pointing out. I have fixed that.
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).
The class is named
LuckyTickets
while the Test expectsLuckyTicket
.Also,
GetLuckyTickets
isprivate
, so nothing can access the method.Thanks, I must forgot to copy the right version.
Assert.AreEqual(55252, GetLuckyTickets());
should beAssert.AreEqual(55252, LuckyTickets.GetLuckyTickets());
instead.