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.
This comment is hidden because it contains spoiler information about the solution
Fixed!
This is true! There was indeed still an issue. I wrote some additional tests to prove this case and re-worked the solution to meet these tests:
The previous tests confirmed that the row
4|#|2|2
when shifted right, would combine correctly to
#|#|4|4
But the solution still combined the row
2|2|#|4
incorrectly into
#|#|#|8
This has been fixed. Please re-try your solution to confirm, and thanks for the feedback!
Thank you for your report! You were correct, there was an issue with the test case that has now been resolved. Thank you for your example. It was very helpful for debugging purposes.
This comment is hidden because it contains spoiler information about the solution