teams.cpp: In function 'int can(int, int*)':
teams.cpp:31:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
31 | for(int i = 0; i < teams.size(); j++){
| ~~^~~~~~~~~~~~~~
teams.cpp:36:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
36 | if(j == arr.size()) return 0;
| ~~^~~~~~~~~~~~~
teams.cpp:41:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
41 | if(j == arr.size() && in < teams[i]) return 0;
| ~~^~~~~~~~~~~~~