A skeleton of game solving

This commit is contained in:
Matúš Púll 2024-11-02 16:13:27 +01:00
parent 3aa98da0b4
commit a5fab72e1a

17
solver.hpp Normal file
View 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 {};
}
};