Anna.cpp: In function '{anonymous}::vi {anonymous}::encode({anonymous}::vi)':
Anna.cpp:19:9: error: 'sz' was not declared in this scope
19 | while(sz(A) % obs != 0)
| ^~
Anna.cpp:43:22: error: 'sz' was not declared in this scope
43 | for(int i = 0; i < sz(A); i += obs)
| ^~
Anna.cpp: In function 'void Anna(int, std::vector<char>)':
Anna.cpp:108:25: error: expected ';' before 'for'
108 | tosend = encode(tosend)
| ^
| ;
109 |
110 | for(int f : tosend)
| ~~~
In file included from /usr/include/c++/10/cassert:44,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:33,
from Bruno.cpp:2:
Bruno.cpp: In function '{anonymous}::vi {anonymous}::decode({anonymous}::vi, int)':
Bruno.cpp:21:10: error: 'sz' was not declared in this scope
21 | assert(sz(A) % cbs == 0);
| ^~