soccer.cpp: In function 'int biggest_stadium(int, std::vector<std::vector<int> >)':
soccer.cpp:16:19: error: 'n' was not declared in this scope
16 | for(int i=0;i<n;i++){
| ^
soccer.cpp:25:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
25 | for(int j=1;j<v.size();j++){
| ~^~~~~~~~~
soccer.cpp:37:19: error: 'n' was not declared in this scope
37 | for(int j=0;j<n;j++){
| ^
soccer.cpp:45:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
45 | for(int i=1;i<v.size();i++){
| ~^~~~~~~~~