Question: Java Coding: Write a generic ArrayList < > program to remove duplicates in ArrayList of different type. A program with three ArrayList of different data
Java Coding:
Write a generic ArrayList < > program to remove duplicates in ArrayList of different type. A program with three ArrayList of different data type is provided for this problem (attached with this assignment). You need to write the method (removeDuplicated( type) ) to return a proper type for ArrayList< >. Currently this program does not compile until you complete the removeDuplicates ( ) method.
Your final result should be as the following:
Before performing the removeDuplicates(...)
Inum size = 5 [14, 24, 14, 42, 25]
Name size = 18 [Brandon, Andrew, Marvin, Jonathan, Greg, Georgie, Destinee, Tyler, Matthew, Matthew, Susan, John, Susan, Marvin, Susan, Ashlee, Eriel, Marvin]
dNum size = 6 [2.1, 3.2, 3.2, 2.1, 9.9, 2.1]
After performing the removeDuplicates(...)
newInum size = 4 [14, 24, 42, 25]
newName size = 13 [Brandon, Andrew, Marvin, Jonathan, Greg, Georgie, Destinee, Tyler, Matthew, Susan, John, Ashlee, Eriel]
newdNum size = 3 [2.1, 3.2, 9.9]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
