combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:32:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
32 | if(res == ans.length() + 2) ans += s[0];
| ~~~~^~~~~~~~~~~~~~~~~~~
combo.cpp:33:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
33 | else if(res == ans.length() + 1) ans += s[1];
| ~~~~^~~~~~~~~~~~~~~~~~~