chameleon.cpp: In function 'void Solve(int)':
chameleon.cpp:13:45: error: 'Query' was not declared in this scope
13 | x[i][j] = x[j][i] = Query(std::vector<int>{i, j});
| ^~~~~
chameleon.cpp:17:39: error: 'Query' was not declared in this scope
17 | if (c == i || Query(std::vector<int>{c, i}) > 1)
| ^~~~~
chameleon.cpp:23:44: error: 'Query' was not declared in this scope
23 | && Query(std::vector<int>{i, c, k}) != x[i][k])
| ^~~~~
chameleon.cpp:26:33: error: 'Answer' was not declared in this scope
26 | Answer(i, c);
| ^~~~~~