combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:46:27: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
46 | while ( prefix.length() < N ) {
| ~~~~~~~~~~~~~~~~^~~
combo.cpp:54:43: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
54 | while( s.length() + append.length() <= N ) {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
combo.cpp:61:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
61 | if ( n > prefix.length()) {
| ~~^~~~~~~~~~~~~~~~~
combo.cpp:65:12: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
65 | if ( n > prefix.length()) {
| ~~^~~~~~~~~~~~~~~~~