candies.cpp: In function 'std::vector<int> distribute_candies(std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
candies.cpp:36:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
36 | for(int l = j + 1; l < Q[i].size(); ++l){
| ~~^~~~~~~~~~~~~
candies.cpp:43:33: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
43 | for(int l = last + 1; l < Q[i].size(); ++l){
| ~~^~~~~~~~~~~~~
candies.cpp:52:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
52 | for(int l = j + 1; l < Q[i].size(); ++l){
| ~~^~~~~~~~~~~~~
candies.cpp:59:33: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
59 | for(int l = last + 1; l < Q[i].size(); ++l){
| ~~^~~~~~~~~~~~~
candies.cpp:72:28: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
72 | for(int l = j + 1; l < Q[i].size(); ++l){
| ~~^~~~~~~~~~~~~
candies.cpp:79:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
79 | for(int l = last + 1; l < Q[i].size(); ++l){
| ~~^~~~~~~~~~~~~