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