combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:26:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
26 | if ( x == ans.size() ) ans += vec[2] ;
| ~~^~~~~~~~~~~~~
combo.cpp:27:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | else if ( x-1 == ans.size() ) ans += vec[1] ;
| ~~~~^~~~~~~~~~~~~
combo.cpp:31:9: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
31 | if ( x == ans.size() ) ans += vec[2] ;
| ~~^~~~~~~~~~~~~
combo.cpp:34:7: 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(x>ans.size()) ans += vec[0] ;
| ~^~~~~~~~~~~