combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:22:23: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
22 | while (ans.size() < N - 1)
| ~~~~~~~~~~~^~~~~~~
combo.cpp:29:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
29 | if (res == ans.size())
| ~~~~^~~~~~~~~~~~~
combo.cpp:31:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
31 | else if (res == ans.size() + 1)
| ~~~~^~~~~~~~~~~~~~~~~