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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started