logo CodeStepByStep logo

You are working on problem set: Week 2 Section ( Pause)

removeConsecutiveDuplicates

Language/Type: C++ Vector collections
Related Links:

Write a function named removeConsecutiveDuplicates that accepts as a parameter a reference to a Vector of integers, and modifies it by removing any consecutive duplicates. For example, if a vector named v stores {1, 2, 2, 3, 2, 2, 3}, the call of removeConsecutiveDuplicates(v); should modify it to store {1, 2, 3, 2, 3}.

Function: Write a C++ function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? .

If something seems wrong with our site, please

Is there a problem? Contact us.