combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:34:8: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | if(c == ans.size()) ans+= a[2];
| ~~^~~~~~~~~~~~~
combo.cpp:35:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
35 | else if(c == ans.size()+1) ans+= a[1];
| ~~^~~~~~~~~~~~~~~
combo.cpp:36:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
36 | else if(c == ans.size()+2) ans+= a[0];
| ~~^~~~~~~~~~~~~~~