Question: create and test a program called RemoveDups.java to remove file duplicates: Consider a text file of names, containing one name per line, that has been
create and test a program called RemoveDups.java to remove file duplicates:
Consider a text file of names, containing one name per line, that has been compiled from several different sources. A sample is shown below: Brooke Trout Dinah Soars Jed Dye Brooke Trout Jed Dye Paige Turner
There are duplicate names in the file. We would like to generate an invitation list but dont want to send multiple invitations to the same person.
Write a program that eliminates the duplicate names by using a HashSet. Read each name from the file, add it to the HashSet, and then a for-each loop to print all the names in the HashSet to generate the invitation list without duplicates.
You can create a file containing the above names as test input.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
