Finishing RotateRight

Signed-off-by: Anthony Debucquoy <debucquoy.anthony@gmail.com>
This commit is contained in:
2023-02-27 11:05:32 +01:00
committed by Anthony Debucquoy
parent e06abe60de
commit 498529f29a
2 changed files with 5 additions and 6 deletions

View File

@ -16,7 +16,7 @@ class PieceTest {
boolean[][] piece1_matrix_result = {
{true, false, true},
{false, true, true},
{true, true, false},
{false, false, false},
};
@ -32,7 +32,7 @@ class PieceTest {
boolean[][] piece3_matrix_result = {
{false, false, false},
{true, true, false},
{false, true, true},
{true, false, true},
};