combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:18:23: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
18 | while (ans.size() < N - 1)
| ~~~~~~~~~~~^~~~~~~
combo.cpp:24:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | if (press(guess) == ans.size())
| ~~~~~~~~~~~~~^~~~~~~~~~~~~
combo.cpp:26:29: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
26 | else if (press(guess) == ans.size() + 1)
| ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
combo.cpp:5:23: warning: control reaches end of non-void function [-Wreturn-type]
5 | std::string ans = "A";
| ^~~