Xoractive.cpp: In function 'std::vector<int> guess(int)':
Xoractive.cpp:26:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
26 | while (ii<res1.size() && jj<res2.size()) {
| ~~^~~~~~~~~~~~
Xoractive.cpp:26:36: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
26 | while (ii<res1.size() && jj<res2.size()) {
| ~~^~~~~~~~~~~~
Xoractive.cpp:36:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
36 | for (int j=0; j<bit[i].size(); j++) bit[i][j] = (bit[i][j] ^ ret[0]);
| ~^~~~~~~~~~~~~~
Xoractive.cpp:43:28: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
43 | for (int j=0; j<v.size(); j++) {
| ~^~~~~~~~~