mushrooms.cpp: In function 'int count_mushrooms(int)':
mushrooms.cpp:42:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | for(j=0; p<N && j<A.size(); p++, j++)
| ~^~~~~~~~~
mushrooms.cpp:40:8: warning: unused variable 'i' [-Wunused-variable]
40 | int i, j;
| ^
mushrooms.cpp:56:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
56 | for(j=0; p<N && j<B.size(); p++, j++)
| ~^~~~~~~~~
mushrooms.cpp:54:8: warning: unused variable 'i' [-Wunused-variable]
54 | int i, j;
| ^