Bruno.cpp: In function 'void Bruno(int, int, std::vector<int>)':
Bruno.cpp:37:21: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
37 | while (v.size() > z - x) v.pop_back();
| ~~~~~~~~~^~~~~~~
Bruno.cpp:40:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
40 | for (int i=0; i<v.size(); i++) {
| ~^~~~~~~~~
Bruno.cpp:56:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
56 | for (int i=0; i+1<idx.size(); i++) {
| ~~~^~~~~~~~~~~