This commit is contained in:
2022-11-22 17:24:36 +08:00
parent d40423a898
commit 9a6595462d
3 changed files with 123 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#ifndef S0037_SUDOKU_SOLVER_HPP
#define S0037_SUDOKU_SOLVER_HPP
#include <vector>
#include <unordered_map>
#include <cmath>
#include <algorithm>
using namespace std;
class Solution {
public:
void solveSudoku(vector<vector<char>>& board);
};
#endif