combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:43:19: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
43 | while (p.size() < n-1) {
| ~~~~~~~~~^~~~~
combo.cpp:55:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
55 | if (temp == p.size()) {
| ~~~~~^~~~~~~~~~~
combo.cpp:57:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
57 | } else if (temp == p.size()+1) {
| ~~~~~^~~~~~~~~~~~~
combo.cpp:42:7: warning: variable 'count' set but not used [-Wunused-but-set-variable]
42 | int count;
| ^~~~~