16 lines
231 B
C++
16 lines
231 B
C++
#ifndef S0036_VALID_SUDOKU_HPP
|
|
#define S0036_VALID_SUDOKU_HPP
|
|
|
|
#include <vector>
|
|
#include <unordered_map>
|
|
#include <cmath>
|
|
|
|
using namespace std;
|
|
|
|
class S0036 {
|
|
public:
|
|
bool isValidSudoku(vector<vector<char>>& board);
|
|
};
|
|
|
|
#endif
|