shoes.cpp: In function 'long long int count_swaps(std::vector<int>)':
shoes.cpp:7:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
7 | for(int i = 0; i < s.size(); i++){
| ~~^~~~~~~~~~
shoes.cpp:8:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
8 | for(int j = i; j < s.size(); j++){
| ~~^~~~~~~~~~
shoes.cpp:20:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
20 | for(int j = i; j < s.size(); j++){
| ~~^~~~~~~~~~