combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:25:23: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
25 | if(current.size() == N) return current;
| ~~~~~~~~~~~~~~~^~~~
combo.cpp:30:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
30 | if(cost == test.size()) {
| ~~~~~^~~~~~~~~~~~~~
combo.cpp:39:27: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
39 | if(current.size() == N) break;
| ~~~~~~~~~~~~~~~^~~~