genetics.cpp: In function 'int main()':
genetics.cpp:16:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
16 | for (int k = 0; k < s[i].size(); k++)
| ~~^~~~~~~~~~~~~
genetics.cpp:20:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
20 | for (int i = 0; i < n; i++)
| ^~~
genetics.cpp:25:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
25 | return 0;
| ^~~~~~