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