A skeleton of game solving
This commit is contained in:
parent
3aa98da0b4
commit
a5fab72e1a
1 changed files with 17 additions and 0 deletions
17
solver.hpp
Normal file
17
solver.hpp
Normal file
|
@ -0,0 +1,17 @@
|
|||
#pragma once
|
||||
#include <vector>
|
||||
|
||||
using std::vector;
|
||||
|
||||
struct Game {
|
||||
int N, M;
|
||||
Game(int p_N, int p_M) : N(p_N), M(p_M) {}
|
||||
};
|
||||
|
||||
class Solver {
|
||||
Game known;
|
||||
Solver(int p_N, int p_M) : known({p_N, p_M}) {}
|
||||
vector<int> guess() {
|
||||
return {};
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue