combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:48:11: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
48 | if (x == 2 + p.size()) {
| ~~^~~~~~~~~~~~~~~
combo.cpp:51:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
51 | if (y == 2 + p.size()) {
| ~~^~~~~~~~~~~~~~~
combo.cpp:53:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
53 | } else if (y == 1 + p.size()) {
| ~~^~~~~~~~~~~~~~~
combo.cpp:59:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
59 | } else if (x == 1 + p.size()) {
| ~~^~~~~~~~~~~~~~~
combo.cpp:62:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
62 | if (y == 2 + p.size()) {
| ~~^~~~~~~~~~~~~~~
combo.cpp:64:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
64 | } else if (y == 1 + p.size()) {
| ~~^~~~~~~~~~~~~~~