Fix column iteration.

This commit is contained in:
Josh Holtrop 2021-02-28 14:50:18 -05:00
parent 6add626470
commit 1c37ec31a1

View File

@ -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;