shoes.cpp: In function 'long long int count_swaps(std::vector<int>)':
shoes.cpp:13:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
13 | for(int i = 0 ;i < s.size() ; i++){
| ~~^~~~~~~~~~
shoes.cpp:14:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
14 | for(int j = i+1;j < s.size() ; j++){
| ~~^~~~~~~~~~
shoes.cpp:11:6: warning: unused variable 'n' [-Wunused-variable]
11 | int n = s.size()/2;
| ^