logo CodeStepByStep logo

RemoveConsecutiveDuplicates

Language/Type: C# List collections
Related Links:

Write a method named RemoveConsecutiveDuplicates that accepts as a parameter a List of integers, and modifies it by removing any consecutive duplicates. For example, if a list 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}.

Method: Write a C# method as described, not a complete program or class.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.