combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:9:40: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
9 | if (press(p + lst[0] + p + lst[1]) >= p.size() + 1) {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
combo.cpp:10:31: 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) p += lst[0];
| ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
combo.cpp:13:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
13 | else if (press(p + lst[2]) == p.size() + 1) p += lst[2];
| ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
combo.cpp:6:7: warning: unused variable 'first' [-Wunused-variable]
6 | int first = 4;
| ^~~~~