dna.cpp: In function 'void init(std::string, std::string)':
dna.cpp:10:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
10 | for(int i=0;i<a.size();++i){
| ~^~~~~~~~~
dna.cpp: In function 'int get_distance(int, int)':
dna.cpp:19:17: warning: 'noC' may be used uninitialized in this function [-Wmaybe-uninitialized]
19 | int noA,noT,noC;
| ^~~
dna.cpp:19:13: warning: 'noT' may be used uninitialized in this function [-Wmaybe-uninitialized]
19 | int noA,noT,noC;
| ^~~
dna.cpp:42:25: warning: 'noA' may be used uninitialized in this function [-Wmaybe-uninitialized]
42 | if(noA!=0 or noT!=0 or noC!=0) return -1;
| ~~~~~~~~~~~~~~~~~^~~~~~~~~