Question: Write a method named removeAll that accepts as a parameter an ArrayList of strings along with an element value string, and modifies the list to
Write a method named removeAll that accepts as a parameter an ArrayList of strings along with an element value string, and modifies the list to remove all occurrences of that string. For example, if the list v contains {"a", "b", "c", "b", "b", "a", "b"}, the call of removeAll(v, "b"); should modify it to store {"a", "c", "a"}.
Make sure to just write one method, not a whole class.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
