dna.cpp: In function 'void init(std::string, std::string)':
dna.cpp:13:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
13 | for(int i = 0; i < s.length();i++){
| ~~^~~~~~~~~~~~
dna.cpp:34:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | for(int i = 0; i < s.length();i++){
| ~~^~~~~~~~~~~~
dna.cpp:53:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
53 | for(int i = 0; i < s.length();i++){
| ~~^~~~~~~~~~~~
dna.cpp:38:22: warning: array subscript 2 is above array bounds of 'int [2]' [-Warray-bounds]
38 | literki2[i][2] = t;
| ~~~~~~~~~~~~~^
dna.cpp:49:28: warning: array subscript 2 is above array bounds of 'int [2]' [-Warray-bounds]
49 | literki2[i][2] += 1;
| ~~~~~~~~~~~~~~~^~~~
dna.cpp:17:22: warning: array subscript 2 is above array bounds of 'int [2]' [-Warray-bounds]
17 | literki1[i][2] = t;
| ~~~~~~~~~~~~~^
dna.cpp:28:28: warning: array subscript 2 is above array bounds of 'int [2]' [-Warray-bounds]
28 | literki1[i][2] += 1;
| ~~~~~~~~~~~~~~~^~~~