Bruno.cpp: In function 'void Bruno(int, int, std::vector<int>)':
Bruno.cpp:39:21: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
39 | while (v.size() > z - x) v.pop_back();
| ~~~~~~~~~^~~~~~~
Bruno.cpp:42:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | 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++) {
| ~~~^~~~~~~~~~~