combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:28:21: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
28 | while(respf.size()<n-1) {
| ~~~~~~~~~~~~^~~~
combo.cpp:36:11: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
36 | if(val==respf.size()) respf+=opt[0];
| ~~~^~~~~~~~~~~~~~
combo.cpp:37:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
37 | else if(val==respf.size()+1) respf+=opt[1];
| ~~~^~~~~~~~~~~~~~~~
combo.cpp:42:9: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | if(val>respf.size()) {
| ~~~^~~~~~~~~~~~~
combo.cpp:44:11: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
44 | if(val>respf.size()) respf+=opt[0];
| ~~~^~~~~~~~~~~~~