more readable output

This commit is contained in:
damage 2024-08-20 20:11:58 +02:00
parent 370d7516f5
commit 8f387ff781

View File

@ -228,7 +228,7 @@ bool isInQuadrat(int q, int val) {
void setValue(int q, int f, int val) {
sudoku[q][f] = val;
printf("=> setting %d in Q %d; F %d\n", val, q, f);
printDumpSudoku();
//printDumpSudoku();
}
int main() {
@ -301,5 +301,5 @@ int main() {
}
} while (somethingChanged);
// next step: muss in Feld X sein, weil alle anderen Felder irgendwie anders belegt sein müssen (aber noch nicht sind)
printDumpSudoku();
}