Question: Write java code Write the following generic method that returns a new ArrayList. The new list contains the non-duplicate elements from the original list. public
Write java code
Write the following generic method that returns a new ArrayList. The new list contains the non-duplicate elements from the original list.
public static ArrayList removeDuplicates(ArrayList originalList)
Use the following program to test your method:
import java.util.ArrayList; public class NewArrayList { public static void main(String[] args) { ArrayList strings = new ArrayList<>(); for (int i = 0; i < 10; i++) { strings.add("Hello"); } strings = removeDuplicates(strings); for (String s : strings) { System.out.println(s); } } public static ArrayList removeDuplicates(ArrayList list) { // YOUR CODE SHOULD GO HERE// } } submit your working functions.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
