leetcode/include/s0037_sudoku_solver.hpp

17 lines
255 B
C++
Raw Normal View History

2022-11-22 09:24:36 +00:00
#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