From 94b364a0819f783354789e479b16bf097bb1fd2f Mon Sep 17 00:00:00 2001 From: po79yr3at Date: Thu, 2 Nov 2023 01:21:08 +0800 Subject: [PATCH] Update all.c --- all.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/all.c b/all.c index aa824e9..2a671e8 100644 --- a/all.c +++ b/all.c @@ -22,8 +22,7 @@ void sudokuPrint(struct Sudoku a){ if(!a.inc[i][j]) putchar('.'); else - // putchar(a.inc[i][j] + 48); - printf("%d", a.inc[i][j]); + putchar(a.inc[i][j] + 48); putchar(' '); } putchar('\n'); @@ -90,7 +89,6 @@ struct Sudoku *sudokuFill__(struct Sudoku *a, int unfillednum, struct Sudoku *ta if(!unfillednum){ pres = M_Sudoku + tp ++; sudokuCopy(*a, pres); - sudokuPrint(*a); return pres; } int m=0, n=0;