Question: Write a method printDuplicated() that receives a generic array and prints the repeated elements in this array. Assume that each element is repeated 0 or

Write a method printDuplicated() that receives a generic array and prints the repeated elements in this array. Assume that each element is repeated 0 or 1 time, maximum. The method returns nothing.

For example: Input array: Integer[] x = { 0, 10, 0, 19, 3, 10, 4, 6, 19, 3 }; Output: 0 10 19 3

Input array: Character[] c = {'1', 'd', '5', 'r', 'c', 'd', '1'};

Output: 1 d

It should work for Integers, Strings, and all types.

In the main method, create two arrays of different types and test your method. Print the elements of the array before calling the method.

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!