shoes.cpp: In function 'long long int count_swaps(std::vector<int>)':
shoes.cpp:10:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
10 | for(int i = 0; i < s.size(); i += 2){
| ~~^~~~~~~~~~
shoes.cpp:12:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
12 | for(int j = i + 1; j < s.size(); j++){
| ~~^~~~~~~~~~
shoes.cpp:18:13: warning: 'ind' may be used uninitialized in this function [-Wmaybe-uninitialized]
18 | for(int j = ind - 1; j > i; j--){
| ^