combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:60:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
60 | if(aux == S.size()) S = S + remain[2];
| ~~~~^~~~~~~~~~~
combo.cpp:61:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
61 | if(aux == S.size() + 1) S = S + remain[1];
| ~~~~^~~~~~~~~~~~~~~
combo.cpp:62:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
62 | if(aux >= S.size() + 2) S = S + remain[0];
| ~~~~^~~~~~~~~~~~~~~