chameleon.cpp: In function 'void Solve(int)':
chameleon.cpp:16:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
16 | if(Query(v1) != v1.size()){
| ~~~~~~~~~~^~~~~~~~~~~~
chameleon.cpp:21:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
21 | for(int j = mid; j < v1.size(); j++) v2.pb(v1[j]);
| ~~^~~~~~~~~~~
chameleon.cpp:22:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | if(Query(v2) != v2.size()) l = mid;
| ~~~~~~~~~~^~~~~~~~~~~~