combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:9:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::__cxx11::basic_string<char> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
9 | for (int i = 0; i < possible.size() - 1; i++) {
| ~~^~~~~~~~~~~~~~~~~~~~~
combo.cpp:19:23: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
19 | while (ans.size() < N) {
| ~~~~~~~~~~~^~~
combo.cpp:33:23: 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 (ret_value == ans.size()) {
| ~~~~~~~~~~^~~~~~~~~~~~~
combo.cpp:36:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
36 | } else if (ret_value == ans.size() + 1) {
| ~~~~~~~~~~^~~~~~~~~~~~~~~~~