Update algorithms/Java/backtracking/Sudoku_Solver.java

Co-authored-by: Mohit Chakraverty <79406819+mohitchakraverty@users.noreply.github.com>
pull/1005/head
Shawaiz Siddiqui 2022-10-12 12:08:41 +05:30 committed by GitHub
parent e7b9efcf60
commit 48fde20e4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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