Question: ( Distinct elements in ArrayList ) Write the following method that returns a new ArrayList. The new list contains the non - duplicate elements from
Distinct elements in ArrayList Write the following method that returns a new ArrayList. The new list contains the nonduplicate elements from the original list.
public static ArrayList removeDuplicatesArrayList list
Additonally, create a main method that exercises the removeDuplicates method. Specifically, create an ArrayList of one hundred integers ranging from to inclusive. Display the contents of the ArrayList. Use the removeDuplicates method on this ArrayList. Display the contents of the new array list. Repeat these steps done for integers, but using random characters of lowercase letters instead of integers.
You must use the the contains method in the ArrayList class. DO NOT use HashSet in your solution.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
