rack.cpp: In function 'std::vector<long long int> merge(std::vector<long long int>&, std::vector<long long int>&)':
rack.cpp:14:20: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
14 | for (int i = 0; i < a.size(); i++) {
| ~~^~~~~~~~~~
rack.cpp:18:20: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
18 | for (int i = 0; i < b.size(); i++) {
| ~~^~~~~~~~~~
rack.cpp:23:12: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | while (pt < oda.size()) {
| ~~~^~~~~~~~~~~~
rack.cpp:24:33: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
24 | if (chance == 0 && oda.size() > pt) ans.pb(oda[pt]);
| ~~~~~~~~~~~^~~~
rack.cpp:25:36: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
25 | else if (chance==1 && odb.size() > pt)ans.pb(odb[pt]);
| ~~~~~~~~~~~^~~~
rack.cpp:30:12: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
30 | while (pt < eva.size()) {
| ~~~^~~~~~~~~~~~
rack.cpp:31:33: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
31 | if (chance == 0 && eva.size() > pt) ans.pb(eva[pt]);
| ~~~~~~~~~~~^~~~
rack.cpp:32:38: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
32 | else if (chance == 1 && evb.size() > pt)ans.pb(evb[pt]);
| ~~~~~~~~~~~^~~~