boxes.cpp: In function 'long long int delivery(int, int, int, int*)':
boxes.cpp:15:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
15 | for(int i = 0; i < esq.size(); i++)
| ~~^~~~~~~~~~~~
boxes.cpp:17:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
17 | for(int i = 0; i < dir.size(); i++)
| ~~^~~~~~~~~~~~
boxes.cpp:22:12: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | while(it1 != esq.size() || it2 != dir.size()){
| ~~~~^~~~~~~~~~~~~
boxes.cpp:22:33: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | while(it1 != esq.size() || it2 != dir.size()){
| ~~~~^~~~~~~~~~~~~
boxes.cpp:23:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | if(it1 == esq.size()) it2++;
| ~~~~^~~~~~~~~~~~~
boxes.cpp:24:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | else if(it2 == dir.size()) it1++;
| ~~~~^~~~~~~~~~~~~