password.cpp: In function 'std::string guess(int, int)':
password.cpp:7:9: error: 'rec' was not declared in this scope
7 | return rec(n, s, x, 0);
| ^~~
password.cpp: In function 'std::string rec(int, int, std::string, int)':
password.cpp:11:15: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
11 | if (x.size() == n) {
| ~~~~~~~~~^~~~
password.cpp:16:7: error: 'query' was not declared in this scope
16 | if (query(x) == x.size()) {
| ^~~~~