wiring.cpp: In function 'long long int min_total_length(std::vector<int>, std::vector<int>)':
wiring.cpp:9:12: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
9 | while(it1 != r.size() - 1 || it2 != 0){
| ~~~~^~~~~~~~~~~~~~~
wiring.cpp:10:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
10 | if(it1 != r.size() - 1) it1++;
| ~~~~^~~~~~~~~~~~~~~