dna.cpp: In function 'll check(ll)':
dna.cpp:30:5: error: return-statement with no value, in function returning 'll' {aka 'long long int'} [-fpermissive]
30 | return;
| ^~~~~~
dna.cpp:37:1: error: return-statement with no value, in function returning 'll' {aka 'long long int'} [-fpermissive]
37 | return;
| ^~~~~~
dna.cpp: In function 'std::string analyse(int, int)':
dna.cpp:53:17: error: 'check' cannot be used as a function
53 | if(check(mid)){
| ^
dna.cpp:62:5: error: expected primary-expression before '+=' token
62 | ans=+='0';
| ^~
dna.cpp: In function 'll check(ll)':
dna.cpp:20:10: warning: control reaches end of non-void function [-Wreturn-type]
20 | string a="0";
| ^~~
grader.cpp: In function 'bool make_test(std::string)':
grader.cpp:14:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
14 | for (int i = 0; i < p.size(); i++) {
| ~~^~~~~~~~~~
grader.cpp:23:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | for (int i = 1; i <= ss.size(); i++) {
| ~~^~~~~~~~~~~~
grader.cpp:28:13: warning: comparison of integer expressions of different signedness: '__gnu_cxx::__alloc_traits<std::allocator<int>, int>::value_type' {aka 'int'} and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
28 | if (pr[i] == p.size()) {