combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:22:23: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
22 | while(st.length() < N) {
| ~~~~~~~~~~~~^~~
combo.cpp:25:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
25 | if(press(s1) == st.length() + 1) {
| ~~~~~~~~~~^~~~~~~~~~~~~~~~~~
combo.cpp:26:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
26 | if(press(st + "A") == st.length() + 1) {
| ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
combo.cpp:32:32: 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(press(st + "X") == st.length() + 1) {
| ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~