wiring.cpp: In function 'int min_total_length(std::vector<int>, std::vector<int>)':
wiring.cpp:11:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
11 | if(ind < b.size() -1)
| ~~~~^~~~~~~~~~~~~
wiring.cpp:15:12: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
15 | while(ind < b.size()){
| ~~~~^~~~~~~~~~