combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:43:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
43 | if (coins == result.size() + 1) {
| ~~~~~~^~~~~~~~~~~~~~~~~~~~
combo.cpp:45:30: 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 (coins == result.size() + 2) {
| ~~~~~~^~~~~~~~~~~~~~~~~~~~
combo.cpp:53:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
53 | if (coins > result.size()) {
| ~~~~~~^~~~~~~~~~~~~~~
combo.cpp:58:31: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
58 | if (result.size() == i) {
| ~~~~~~~~~~~~~~^~~~