combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:18:25: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
18 | while (ans.length() <= n - 2) {
| ~~~~~~~~~~~~~^~~~~~~~
combo.cpp:21:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
21 | if (temp == ans.size() + 1) {
| ~~~~~^~~~~~~~~~~~~~~~~
combo.cpp:23:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | } else if (temp == ans.size() + 2) {
| ~~~~~^~~~~~~~~~~~~~~~~