This commit is contained in:
2022-11-22 16:19:44 +08:00
parent 68ca2ebbc9
commit d40423a898
3 changed files with 86 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#ifndef S0036_VALID_SUDOKU_HPP
#define S0036_VALID_SUDOKU_HPP
#include <vector>
#include <unordered_map>
#include <cmath>
using namespace std;
class Solution {
public:
bool isValidSudoku(vector<vector<char>>& board);
};
#endif