dna.cpp: In function 'int get_distance(int, int)':
dna.cpp:22:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | for (int i = 0; i < t1.size(); i ++)
| ~~^~~~~~~~~~~
dna.cpp:27:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | while(j < s1.size() && (s1[j] != t1[i] || s1[j] == t1[j]))
| ~~^~~~~~~~~~~
dna.cpp:30:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
30 | if (j == s1.size())
| ~~^~~~~~~~~~~~