logo CodeStepByStep logo

deleteDuplicates

Language/Type: Java ArrayList collections
Related Links:

Write a method named deleteDuplicates that accepts as a parameter a sorted ArrayList of Strings and that removes any duplicate values from the list. For example, suppose that an ArrayList named list contains the values {"be", "be", "is", "not", "or", "question", "that", "the", "to", "to"} After calling deleteDuplicates(list); the list should store the following values: {"be", "is", "not", "or", "question", "that", "the", "to"} You should assume that the values in the list are sorted, and that therefore all of the duplicates will be grouped together.

Method: Write a Java 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.