combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:24:20: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
24 | if( ans.size() == N ) return ans;
| ~~~~~~~~~~~^~~~
combo.cpp:26:23: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
26 | while( ans.size() < N-1 ){
| ~~~~~~~~~~~^~~~~
combo.cpp:34:15: 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( t == ans.size() ) ans += v[2];
| ~~^~~~~~~~~~~~~
combo.cpp:35:20: 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( t == ans.size() + 1 ) ans += v[1];
| ~~^~~~~~~~~~~~~~~~~
combo.cpp:36:20: 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( t == ans.size() + 2 ) ans += v[0];
| ~~^~~~~~~~~~~~~~~~~