shoes.cpp: In function 'long long int count_swaps(std::vector<int>)':
shoes.cpp:12:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
12 | for(int i = 0; i < a.size(); i ++ ){
| ~~^~~~~~~~~~
shoes.cpp:15:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
15 | for(int j = i+1; j < a.size(); j ++ ){
| ~~^~~~~~~~~~
shoes.cpp:11:14: warning: unused variable 'srch' [-Wunused-variable]
11 | ll ans = 0, srch;
| ^~~~