12 lines
210 B
C++
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
|
|
|