ADD file via upload

main
po79yr3at 1 year ago
parent ea239dd7a2
commit ad91578a92

@ -0,0 +1,13 @@
#include "all.h"
int main(){
ptrInit();
initRandomSeed();
struct Sudoku a;
sudokuCopy(sudokuRandomGenerate(10), &a);
printf("The original Sudoku matrix: \n");
sudokuPrint(a);
sudokuJudge(a);
return 0;
ptrClear();
}
Loading…
Cancel
Save