combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:52:19: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
52 | if(s.size() == N){
| ~~~~~~~~~^~~~
combo.cpp:57:34: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
57 | while(s.size() < N - 1){
| ~~~~~~~~~^~~~~~~
combo.cpp:70:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
70 | if(cur == s.size()){
| ~~~~^~~~~~~~~~~
combo.cpp:74:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
74 | if(cur == s.size() + 1){
| ~~~~^~~~~~~~~~~~~~~
combo.cpp:84:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
84 | if(cur == s.size() + 1){
| ~~~~^~~~~~~~~~~~~~~
combo.cpp:91:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
91 | if(cur == s.size() + 1){
| ~~~~^~~~~~~~~~~~~~~
combo.cpp:101:34: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
101 | while(s.size() < N - 1){
| ~~~~~~~~~^~~~~~~
combo.cpp:114:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
114 | if(cur == s.size()){
| ~~~~^~~~~~~~~~~
combo.cpp:118:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
118 | if(cur == s.size() + 1){
| ~~~~^~~~~~~~~~~~~~~
combo.cpp:128:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
128 | if(cur == s.size() + 1){
| ~~~~^~~~~~~~~~~~~~~
combo.cpp:135:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
135 | if(cur == s.size() + 1){
| ~~~~^~~~~~~~~~~~~~~
combo.cpp:145:34: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
145 | while(s.size() < N){
| ~~~~~~~~~^~~
combo.cpp:158:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
158 | if(cur == s.size()){
| ~~~~^~~~~~~~~~~
combo.cpp:162:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
162 | if(cur == s.size() + 1){
| ~~~~^~~~~~~~~~~~~~~
combo.cpp:172:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
172 | if(cur == s.size() + 1){
| ~~~~^~~~~~~~~~~~~~~
combo.cpp:179:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
179 | if(cur == s.size() + 1){
| ~~~~^~~~~~~~~~~~~~~
combo.cpp:189:34: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
189 | while(s.size() < N){
| ~~~~~~~~~^~~
combo.cpp:202:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
202 | if(cur == s.size()){
| ~~~~^~~~~~~~~~~
combo.cpp:206:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
206 | if(cur == s.size() + 1){
| ~~~~^~~~~~~~~~~~~~~
combo.cpp:216:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
216 | if(cur == s.size() + 1){
| ~~~~^~~~~~~~~~~~~~~
combo.cpp:223:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
223 | if(cur == s.size() + 1){
| ~~~~^~~~~~~~~~~~~~~
combo.cpp:19:27: warning: control reaches end of non-void function [-Wreturn-type]
19 | string s = "", s1 = "AB";
| ^~~~