combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:53:22: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
53 | while(ans.size() <= n - 2)
| ~~~~~~~~~~~^~~~~~~~
combo.cpp:57:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
57 | if(x == ans.size())
| ~~^~~~~~~~~~~~~
combo.cpp:61:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
61 | if(x == ans.size() + 1)
| ~~^~~~~~~~~~~~~~~~~
combo.cpp:69:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
69 | if(x == ans.size() + 1)
| ~~^~~~~~~~~~~~~~~~~
combo.cpp:75:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
75 | if(x == ans.size() + 1)
| ~~^~~~~~~~~~~~~~~~~