combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:36:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
36 | if(temp==ans.length())
| ~~~~^~~~~~~~~~~~~~
combo.cpp:40:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
40 | else if(temp==ans.length()+1)
| ~~~~^~~~~~~~~~~~~~~~
combo.cpp:48:20: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
48 | if(ans.length()==n)
| ~~~~~~~~~~~~^~~
combo.cpp:56:20: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
56 | if(ans.length()==n)
| ~~~~~~~~~~~~^~~