dna.cpp: In function 'int get_distance(int, int)':
dna.cpp:19:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
19 | for(int i=0;i<temp.size();i++)
| ~^~~~~~~~~~~~
dna.cpp:23:28: 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 j=i+1;j<temp2.size();j++)
| ~^~~~~~~~~~~~~
dna.cpp:33:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
33 | if(temp!=temp2)
| ^~
dna.cpp:35:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
35 | return res;
| ^~~~~~