combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:22:9: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | if (x == s.length() + 1) nxt = (f + 1) % 4;
| ~~^~~~~~~~~~~~~~~~~
combo.cpp:23:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | else if (x == s.length() + 2) nxt = (f + 2) % 4;
| ~~^~~~~~~~~~~~~~~~~
combo.cpp:24:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | else if (x == s.length() ) nxt = (f + 3) % 4;
| ~~^~~~~~~~~~~~~