2023 retainAll Write a method called retainAll that takes two sets of integers | Assignment Collections
Computer Science 2023 Lists, Sets, Stacks And Queues
2023 retainAll Write a method called retainAll that takes two sets of integers | Assignment Collections
retainAll
Write a method called retainAll
that takes two sets of integers as parameters and that removes any values in the first set that are not found in the second set.
For example, given sets:
s1: [0, 19, 8, 9, 12, 13, 14, 15]
s2: [0, 19, 2, 4, 5, 9, 10, 11]
If the following call is made:
retainAll(s1, s2);
after the call, the sets would store the following values:
s1: [0, 19, 9]
s2: [0, 19, 2, 4, 5, 9, 10, 11]
You are implementing a two-argument alternative to the standard Set method called retainAll, so you are not allowed to call that method to solve this problem.
You are also not allowed to construct any structured objects to solve the problem (no set, list, stack, queue, string, etc) although you can construct iterators.
Your method should not change the second set passed as a parameter.
We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.