combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:12:20: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
12 | while(p.size() < n){
| ~~~~~~~~~^~~
combo.cpp:16:28: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
16 | while(p.size() < n) p.push_back(u);
| ~~~~~~~~~^~~
combo.cpp:24:28: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
24 | while(p.size() > k) p.pop_back();
| ~~~~~~~~~^~~