combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:64:9: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
64 | if(re == s.size())
| ~~~^~~~~~~~~~~
combo.cpp:66:9: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
66 | if(re == s.size() + 1)
| ~~~^~~~~~~~~~~~~~~
combo.cpp:68:9: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
68 | if(re == s.size() + 2)
| ~~~^~~~~~~~~~~~~~~
combo.cpp:71:36: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
71 | if(press(s + oth[0] + s + oth[1]) == s.size() + 1) {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
combo.cpp:72:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
72 | if(press(s + oth[0]) == s.size() + 1)
| ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~