Xoractive.cpp: In function 'std::vector<int> guess(int)':
Xoractive.cpp:27:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | while (ii<res1.size() && jj<res2.size()) {
| ~~^~~~~~~~~~~~
Xoractive.cpp:27:36: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | while (ii<res1.size() && jj<res2.size()) {
| ~~^~~~~~~~~~~~
Xoractive.cpp:37:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
37 | for (int j=0; j<tmp.size(); j+=2) bit[i].push_back(tmp[j] ^ ret[0]);
| ~^~~~~~~~~~~
Xoractive.cpp:44: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]
44 | for (int j=0; j<v.size(); j++) {
| ~^~~~~~~~~