dna.cpp: In function 'std::string analyse(int, int)':
dna.cpp:48:28: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
48 | if(s[s.size()]=='0'&& (a[0]=="0"||a[1]=="0")||s[s.size()]=='1'&& (b[0]=="0"||b[1]=="0")){
dna.cpp:56:28: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
56 | if(s[s.size()]=='0'&& (a[0]=="1"||a[1]=="1")||s[s.size()]=='1'&& (b[0]=="1"||b[1]=="1")){
dna.cpp:68:28: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
68 | if(s[s.size()]=='0'&& (a[0]=="0"||a[1]=="0")||s[s.size()]=='1'&& (b[0]=="0"||b[1]=="0")){
dna.cpp:76:28: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
76 | if(s[s.size()]=='0'&& (a[0]=="1"||a[1]=="1")||s[s.size()]=='1'&& (b[0]=="1"||b[1]=="1")){
dna.cpp:88:28: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
88 | if(s[s.size()]=='0'&& (a[0]=="0"||a[1]=="0")||s[s.size()]=='1'&& (b[0]=="0"||b[1]=="0")){
dna.cpp:96:28: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
96 | if(s[s.size()]=='0'&& (a[0]=="1"||a[1]=="1")||s[s.size()]=='1'&& (b[0]=="1"||b[1]=="1")){
dna.cpp:107:1: error: expected '}' at end of input
107 | }
| ^
dna.cpp:16:35: note: to match this '{'
16 | std::string analyse(int n, int t) {
| ^
dna.cpp:18:18: warning: control reaches end of non-void function [-Wreturn-type]
18 | vector<string>v;
| ^
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()) {