bootfall.cpp: In function 'bool okay(std::vector<int>&, int)':
bootfall.cpp:13:20: 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 < v.size(); i++) {
| ~~^~~~~~~~~~
bootfall.cpp:23:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | for (int i = 0; i < v.size(); i++) {
| ~~^~~~~~~~~~
bootfall.cpp: In function 'std::vector<int> remove(std::vector<int>, int)':
bootfall.cpp:32:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
32 | for (int i = 0; i < v.size(); i++) {
| ~~^~~~~~~~~~
bootfall.cpp: In function 'int main()':
bootfall.cpp:48:5: error: 'random_shuffle' was not declared in this scope
48 | random_shuffle(v.begin(), v.end());
| ^~~~~~~~~~~~~~
bootfall.cpp:53:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
53 | for (int j = 0; j < v.size(); j++) {
| ~~^~~~~~~~~~