17 lines
255 B
C++
17 lines
255 B
C++
|
#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
|