bootfall.cpp:7:21: warning: extra tokens at end of #include directive
7 | #include <algorithm>;
| ^
bootfall.cpp: In function 'bool okay(std::vector<int>&, int)':
bootfall.cpp:14:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
14 | for (int i = 0; i < v.size(); i++) {
| ~~^~~~~~~~~~
bootfall.cpp:24:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for (int i = 0; i < v.size(); i++) {
| ~~^~~~~~~~~~
bootfall.cpp: In function 'std::vector<int> remove(std::vector<int>, int)':
bootfall.cpp:33:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
33 | for (int i = 0; i < v.size(); i++) {
| ~~^~~~~~~~~~
bootfall.cpp: In function 'int main()':
bootfall.cpp:54:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
54 | for (int j = 0; j < v.size(); j++) {
| ~~^~~~~~~~~~