leetcode/include/s0036_valid_sudoku.hpp

16 lines
231 B
C++
Raw Permalink Normal View History

2022-11-22 08:19:44 +00:00
#ifndef S0036_VALID_SUDOKU_HPP
#define S0036_VALID_SUDOKU_HPP
#include <vector>
#include <unordered_map>
#include <cmath>
using namespace std;
2022-11-30 10:20:36 +00:00
class S0036 {
2022-11-22 08:19:44 +00:00
public:
bool isValidSudoku(vector<vector<char>>& board);
};
#endif