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.
So similar :D
Please mention in the description that different providers can have the same name.
Nice kata
It seems you're not allowed to lead with a point card. I didn't see this in the description.
Stars are also used for markup, to make text bold or italic. So in the description they get omitted.
Try using ```*3*``` or \*3\* instead of *3*, to show the stars correctly.
Given initial array
The first entry of the reference solution is
{"wr":["wrriirryyVVyyHHyyNN6","wrriirryyVVyyHHyyNNvvEEOORRaab"]}
. This doesn't satisfy the rule that chains in each of resulting array's element's value should respect initial array's elements order. You can't continue the chain afterwrri
becauseri
is the last element.Also, I would expect the solution to start with
{"KJ":["KJJc",...]}
. But that's another issue.Please fix the solution or describe the problem better.
Good job !
Years like 1700 are not leap years: https://en.wikipedia.org/wiki/Leap_year
Some cases in the random tests are still pretty strange.
For example, starting from the board:
The moves are
['h1-g1', 'a8xb7', 'f5-f6', 'f2-e3', 'g1-f1']
. The fourth movef2-e3
moves a white knight into a square with a white rook. Three observations:It's sometimes hard to judge whether things are an issue when you don't have to validate if moves are legal. But I think at the very least the third observation should not be in the test cases. Perhaps also the first. This will also improve the experience for people solving the kata.
Looks good !
Well I have to solve the kata first...
Please make sure that moves in the random tests don't move onto a square with a piece of the same color.
For example, I had one random test starting from position:
The moves are
['c6-c8', 'b2xc3', 'c4-c5', 'c3xa1', 'e6-e7', 'a8-b7', 'h1xg1', 'g2-h3']
. The third movec4-c5
moves a white pawn into a square with another white pawn.Side note: I know there is no need to validate if moves are legal, so in this test case it's fine that moves are made while kings are in check. I just think that capturing your own pieces is an issue.
My pleasure. I use an online chess board to play the moves.
Something similar occurs in the fourth test case in Complicated Move Sequences. Here the move
g3xd4
is not possible. There is no piece on g3. I think you meanf3xd4
.In the second test case in Complicated Move Sequences, the move
b3-d5
is not possible. There is no piece on b3. I think you meanc3-d5
.Loading more items...