Thhsdjasdkh askhdh

This commit is contained in:
Jacob Signorovitch
2025-02-24 08:31:26 -05:00
parent b79ce50ae1
commit 3c8cb40be8

View File

@@ -50,7 +50,15 @@ class Sudoku {
if (n < 1 || n > 9) return false;
// Check that there'ren't any repeats in a row.
for (int[] row : puz) { int[] }
for (int[] row : puz) {
for (int n : row) {}
}
// Check that there'ren't any repeats in a column.
// Check that there'ren't any repeats in a 3x3 square.
return true;
}
}