From 48fde20e4acc9b4c8d182ec087e1156014a40cfe Mon Sep 17 00:00:00 2001 From: Shawaiz Siddiqui <105994493+Shawaiz22@users.noreply.github.com> Date: Wed, 12 Oct 2022 12:08:41 +0530 Subject: [PATCH] Update algorithms/Java/backtracking/Sudoku_Solver.java Co-authored-by: Mohit Chakraverty <79406819+mohitchakraverty@users.noreply.github.com> --- algorithms/Java/backtracking/Sudoku_Solver.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algorithms/Java/backtracking/Sudoku_Solver.java b/algorithms/Java/backtracking/Sudoku_Solver.java index e155afcf..61743b08 100644 --- a/algorithms/Java/backtracking/Sudoku_Solver.java +++ b/algorithms/Java/backtracking/Sudoku_Solver.java @@ -79,7 +79,7 @@ public class Sudoku_Solver { } // grid check - // here we find the start row and start cols of the grid using the formula, then travesing in the grid(3x3), we check for the digits + // here we find the start row and start cols of the grid using the formula, then traversing in the grid(3x3), we check for the digits int sr = (row/3)*3; int sc = (col/3)*3;