mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 09:04:06 +00:00
8 lines
177 B
C++
8 lines
177 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
class Solution
|
|
{
|
|
public:
|
|
bool isValidSudoku(vector<vector<char>> &board);
|
|
bool test(vector<vector<char>> &board, bool answer);
|
|
}; |