Skip to content
This repository was archived by the owner on Aug 24, 2020. It is now read-only.

Commit 7c36e37

Browse files
author
Jonathan Meibergen
committed
comment bug
1 parent 661f60f commit 7c36e37

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

SudokuSolver/Logics/Solver.cs

-2
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,6 @@ public bool SolveGuessingRecursion(int row, int col, ref int[][] sudoku)
211211
//if there are candidates, walk through them in a linear fashion
212212
foreach (var guess in candidates)
213213
{
214-
//if (1 == random)
215-
// continue;
216214
//lets try out a guess from candidates
217215
sudoku[row][col] = guess;
218216

0 commit comments

Comments
 (0)