combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:33:22: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
33 | while(ans.size() < N){
| ~~~~~~~~~~~^~~
combo.cpp:42:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | if(rep == ans.size()+1) ans += bt[i3];
| ~~~~^~~~~~~~~~~~~~~
combo.cpp:43:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
43 | else if(rep == ans.size()+2) ans += bt[i2], ans += bt[i3];
| ~~~~^~~~~~~~~~~~~~~