Anna.cpp:5:29: error: 'vector' has not been declared
5 | void Anna(int N, int K, vector<int> R, vector<int> C) {
| ^~~~~~
Anna.cpp:5:35: error: expected ',' or '...' before '<' token
5 | void Anna(int N, int K, vector<int> R, vector<int> C) {
| ^
Anna.cpp: In function 'void Anna(int, int, int)':
Anna.cpp:25:20: error: 'cout' was not declared in this scope
25 | cout << equival << " ";
| ^~~~
Anna.cpp:34:37: error: 'R' was not declared in this scope
34 | int ndx = - R[equival] + i, ndy = - C[equival] + j;
| ^
Anna.cpp:38:36: error: 'ndy' was not declared in this scope; did you mean 'ndx'?
38 | } else if (ndy >= 2) {
| ^~~
| ndx
Anna.cpp:57:16: error: 'cout' was not declared in this scope
57 | cout << endl;
| ^~~~
Anna.cpp:57:24: error: 'endl' was not declared in this scope
57 | cout << endl;
| ^~~~
Anna.cpp:63:9: error: 'assert' was not declared in this scope
63 | assert(valid == true);
| ^~~~~~
Anna.cpp:1:1: note: 'assert' is defined in header '<cassert>'; did you forget to '#include <cassert>'?
+++ |+#include <cassert>
1 | int cur[105][105];
Anna.cpp:84:17: error: 'cout' was not declared in this scope
84 | cout << cur[i][j] << " ";
| ^~~~
Anna.cpp:86:13: error: 'cout' was not declared in this scope
86 | cout << endl;
| ^~~~
Anna.cpp:86:21: error: 'endl' was not declared in this scope
86 | cout << endl;
| ^~~~
Anna.cpp:89:9: error: 'cout' was not declared in this scope
89 | cout << endl;
| ^~~~
Anna.cpp:89:17: error: 'endl' was not declared in this scope
89 | cout << endl;
| ^~~~
Anna.cpp:97:21: error: 'SetFlag' was not declared in this scope
97 | SetFlag(i, j, 12);
| ^~~~~~~
Anna.cpp:99:21: error: 'SetFlag' was not declared in this scope
99 | SetFlag(i, j, skipval);
| ^~~~~~~
Anna.cpp:102:21: error: 'SetFlag' was not declared in this scope
102 | SetFlag(i, j, cur[i][j]);
| ^~~~~~~
Bruno.cpp:1:1: error: 'vector' does not name a type
1 | vector<int> Bruno(int K, vector<int> value) {
| ^~~~~~