Question: Write a function void removeAll(vector & v, char c) that removes all copies of character c from vector v. Code: #include #include using namespace std;
Write a function void removeAll(vector
Code:
#include
using namespace std;
template
//Do not modify anything on or above the line below this //YOUR_CODE_BELOW
//YOUR_CODE
//YOUR_CODE_ABOVE //Do not modify anything on or below the line above this
int main() { vector
auto lettersCopy = letters; removeAll(lettersCopy, 'C'); print(lettersCopy);
lettersCopy = letters; removeAll(lettersCopy, 'B'); print(lettersCopy);
lettersCopy = letters; removeAll(lettersCopy, 'A'); print(lettersCopy); }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
