This commit is contained in:
Admin
2023-04-13 14:02:08 +08:00
commit 33c813630f
57 changed files with 27736 additions and 0 deletions

19
Make/sudoku/test.cpp Normal file
View File

@@ -0,0 +1,19 @@
#include "test.h"
#include <time.h>
#include <iostream>
using namespace std;
//生成棋盘,10s
void test_case1()
{
CScene scene;
time_t begin, end;
time(&begin);
scene.generate();
time(&end);
scene.show();
cout << end - begin << endl;
}