combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:20:20: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
20 | while(s.size() < N - 1){
| ~~~~~~~~~^~~~~~~
combo.cpp:26:16: 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(ans == s.size()){
| ~~~~^~~~~~~~~~~
combo.cpp:29:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
29 | else if(ans == s.size() + 1){
| ~~~~^~~~~~~~~~~~~~~
combo.cpp:36:24: 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(press(s + v[0]) == s.size() + 1){
| ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
combo.cpp:39:29: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
39 | else if(press(s + v[1]) == s.size() + 1){
| ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~