16 lines
234 B
C++
16 lines
234 B
C++
|
#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
|