train.cpp: In function 'std::vector<int> who_wins(std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
train.cpp:26:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
26 | for(int i = 0; i < u.size(); i++) {
| ~~^~~~~~~~~~
train.cpp:30:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
30 | for(int i = 0; i < A.size(); i++)
| ~~^~~~~~~~~~
train.cpp:30:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
30 | for(int i = 0; i < A.size(); i++)
| ^~~
train.cpp:32:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
32 | return res;
| ^~~~~~