combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:16:42: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
16 | if (k != j and press(res + c[j]) > res.size()) {
| ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
combo.cpp:26:20: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
26 | if (res.size() == n) {
| ~~~~~~~~~~~^~~~
combo.cpp:30:1: warning: control reaches end of non-void function [-Wreturn-type]
30 | }
| ^