combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:25:25: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
25 | while (ret.size()+1 < N) {
| ~~~~~~~~~~~~~^~~
combo.cpp:33:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
33 | if (code == ret.size()) ret += possible[2];
| ~~~~~^~~~~~~~~~~~~
combo.cpp:34:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | else if (code == ret.size()+1) ret += possible[0];
| ~~~~~^~~~~~~~~~~~~~~
combo.cpp:38:20: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
38 | if (ret.size() == N) return ret;
| ~~~~~~~~~~~^~~~