combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:41:9: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
41 | if (x == curr.size() + 1) curr += notans[0];
| ~~^~~~~~~~~~~~~~~~~~
combo.cpp:42:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | else if (x == curr.size() + 2) curr += notans[1];
| ~~^~~~~~~~~~~~~~~~~~
combo.cpp:49:18: 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 (press(tmp) == tmp.size()) {
| ~~~~~~~~~~~^~~~~~~~~~~~~
combo.cpp:54:18: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
54 | if (curr.size() < N) curr += notans.back();
| ~~~~~~~~~~~~^~~