combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:8:38: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
8 | if (press(p + lst[0] + p + lst[1]) >= p.size() + 1)
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
combo.cpp:10:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
10 | if (press(p + lst[0]) == p.size() + 1){
| ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
combo.cpp:19:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
19 | else if (press(p + lst[2]) == p.size() + 1) {
| ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~