4conq/Strategy/Strategy.h
szdytom 02eadae4ca
Add framework
Signed-off-by: szdytom <szdytom@qq.com>
2024-01-30 20:46:18 +08:00

12 lines
210 B
C++

#ifndef CQ4_STRATEGY_H_
#define CQ4_STRATEGY_H_
#include <vector>
#include <tuple>
void initStrategy(int n, const std::vector<std::vector<int>> &B);
std::tuple<int, int> getMove(int lstX, int lstY);
#endif