combo.cpp: In function 'int press(std::string)':
combo.cpp:11:1: warning: no return statement in function returning non-void [-Wreturn-type]
11 | }
| ^
combo.cpp: In function 'int main()':
combo.cpp:21:15: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
21 | while(s.size()<n){
| ~~~~~~~~^~
combo.cpp:23:5: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | if(m==s.size()+0)s+=q[2];else
| ~^~~~~~~~~~~~
combo.cpp:24:5: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | if(m==s.size()+1)s+=q[1];else s+=q[0];}
| ~^~~~~~~~~~~~
/usr/bin/ld: /tmp/ccbJdYFm.o: in function `press(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >)':
grader.cpp:(.text+0x0): multiple definition of `press(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >)'; /tmp/ccJXkvwp.o:combo.cpp:(.text.unlikely+0x0): first defined here
/usr/bin/ld: /tmp/ccbJdYFm.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/ccJXkvwp.o:combo.cpp:(.text.unlikely+0x4): first defined here
/usr/bin/ld: /tmp/ccbJdYFm.o: in function `main':
grader.cpp:(.text.startup+0x4c): undefined reference to `guess_sequence[abi:cxx11](int)'
collect2: error: ld returned 1 exit status