password.cpp: In function 'std::string guess(long long int, long long int)':
password.cpp:37:19: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
37 | if(query(tmp) == tmp.size()) l = m+1;
| ~~~~~~~~~~~^~~~~~~~~~~~~
password.cpp:44:20: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
44 | for(int j = 0; j < ans.size(); j++) tmp += ans[j];
| ~~^~~~~~~~~~~~
password.cpp:48:20: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
48 | for(int j = 1; j <= tmp.size(); j++) {
| ~~^~~~~~~~~~~~~
password.cpp:6:6: warning: unused variable 'cnt' [-Wunused-variable]
6 | int cnt = 1;
| ^~~
/usr/bin/ld: /tmp/ccAz5qCH.o: in function `main':
grader.cpp:(.text.startup+0x66): undefined reference to `guess[abi:cxx11](int, int)'
collect2: error: ld returned 1 exit status