combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:32:23: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
32 | if(current.size() == N) return current;
| ~~~~~~~~~~~~~~~^~~~
combo.cpp:36:28: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
36 | if(test.size() < N) {
| ~~~~~~~~~~~~^~~
combo.cpp:42:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | if(cost == current.size() + 1) {
| ~~~~~^~~~~~~~~~~~~~~~~~~~~
combo.cpp:45:28: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
45 | } else if(cost == current.size() + 2) {
| ~~~~~^~~~~~~~~~~~~~~~~~~~~
combo.cpp:48:42: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
48 | } else if(current.size() + 1 < N) {
| ~~~~~~~~~~~~~~~~~~~^~~
combo.cpp:57:27: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
57 | if(current.size() == N) break;
| ~~~~~~~~~~~~~~~^~~~