combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:34:21: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
34 | while (s.size() < n) {
| ~~~~~~~~~^~~
combo.cpp:49:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
49 | if (x == p.size()) {
| ~~^~~~~~~~~~~
combo.cpp:53:24: 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 (x == p.size() - 1) {
| ~~^~~~~~~~~~~~~~~
combo.cpp:38:17: warning: 'j' may be used uninitialized in this function [-Wmaybe-uninitialized]
38 | if (i != j) {
| ^~