DSA-Bootcamp-Java
DSA-Bootcamp-Java copied to clipboard
sudoku solver rows isSafe updated
description : In isSafe method below loop is intended to check if the number we are trying to insert is already available in the row or not. But below loop is iterating over columns and not on rows so it is checking if the number already exists in column or not instead of row.
for this i have updated for both rows as well as columns.