Question: 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

 Write a method called retainAll that takes two sets of integers

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] 52: [0, 19, 2, 4, 5, 9, 10, 11] If the following call is made: retainAll(si, s2); after the call, the sets would store the following values: sl: [0, 19, 9] s2: [0, 19, 2, 4, 5, 9, 10, 11]

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!