Fix column iteration.
This commit is contained in:
parent
6add626470
commit
1c37ec31a1
@ -51,7 +51,7 @@ class Solver
|
||||
bool found_valid_move = false;
|
||||
for (int row = 0; row < m_size; row++)
|
||||
{
|
||||
for (int col = 0; col < row; col++)
|
||||
for (int col = 0; col <= row; col++)
|
||||
{
|
||||
for (Board.Direction direction = Board.Direction.FIRST;
|
||||
direction < Board.Direction.COUNT;
|
||||
|
Loading…
x
Reference in New Issue
Block a user