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