combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:43:24: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
43 | while ( ans.size() < N ){
| ~~~~~~~~~~~^~~
combo.cpp:46:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
46 | if ( p == ans.size() + 2 ){
| ~~^~~~~~~~~~~~~~~~~
combo.cpp:48:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
48 | } else if ( p == ans.size() + 1 ){
| ~~^~~~~~~~~~~~~~~~~
combo.cpp:34:9: warning: variable 'ch' set but not used [-Wunused-but-set-variable]
34 | int ch;
| ^~