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:28: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]
28 | while (pt < oda.size()) {
| ~~~^~~~~~~~~~~~
rack.cpp:29: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]
29 | if (chance == 0 && oda.size() > pt) ans.pb(oda[pt]);
| ~~~~~~~~~~~^~~~
rack.cpp:30: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]
30 | else if (chance==1 && odb.size() > pt)ans.pb(odb[pt]);
| ~~~~~~~~~~~^~~~
rack.cpp:35: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]
35 | while (pt < eva.size()) {
| ~~~^~~~~~~~~~~~
rack.cpp:36: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]
36 | if (chance == 0 && eva.size() > pt) ans.pb(eva[pt]);
| ~~~~~~~~~~~^~~~
rack.cpp:37: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]
37 | else if (chance == 1 && evb.size() > pt)ans.pb(evb[pt]);
| ~~~~~~~~~~~^~~~