Anna.cpp: In function 'void Anna(int, std::vector<char>)':
Anna.cpp:22:19: error: 'Send' was not declared in this scope
22 | for (int n : go) Send(n);
| ^~~~
Bruno.cpp: In function 'void Bruno(int, int, std::vector<int>)':
Bruno.cpp:6:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
6 | for (int i = 0; i < A.size(); ++i) {
| ~~^~~~~~~~~~
Bruno.cpp:8:8: error: 'Remove' was not declared in this scope; did you mean 'remove'?
8 | else Remove(i);
| ^~~~~~
| remove
Bruno.cpp:10:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
10 | for (int i = 1; i < P.size(); i += 3) Remove(P[i]);
| ~~^~~~~~~~~~
Bruno.cpp:10:40: error: 'Remove' was not declared in this scope; did you mean 'remove'?
10 | for (int i = 1; i < P.size(); i += 3) Remove(P[i]);
| ^~~~~~
| remove
Bruno.cpp:11:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
11 | for (int i = 0; i < P.size(); ++i) if (i % 3 != 1) Remove(P[i]);
| ~~^~~~~~~~~~
Bruno.cpp:11:53: error: 'Remove' was not declared in this scope; did you mean 'remove'?
11 | for (int i = 0; i < P.size(); ++i) if (i % 3 != 1) Remove(P[i]);
| ^~~~~~
| remove