combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:23:17: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
23 | while(S.size() != N){
| ~~~~~~~~~^~~~
combo.cpp:25:10: 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(tmp == S.size() + 1){
| ~~~~^~~~~~~~~~~~~~~
combo.cpp:27:11: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | if(tmp == S.size() + 1) S += C[0];
| ~~~~^~~~~~~~~~~~~~~