Q. Program to print the duplicate elements of an array.ExplanationIn this program, we need to print the duplicate elements present in the array. This can be done through two loops. The first loop will select an element and the second loop will iteration through the array by comparing the selected element with other elements. If a match is found, print the duplicate element. In the above array, the first duplicate will be found at the index 4 which is the duplicate of the element (2) present at index 1. So, duplicate elements in the above array are 2, 3 and 8. Algorithm
SolutionPythonOutput: Duplicate elements in given array: 2 3 8 COutput: Duplicate elements in given array: 2 3 8 JAVAOutput: Duplicate elements in given array: 2 3 8 C#Output: Duplicate elements in given array: 2 3 8 PHPOutput: Duplicate elements in given array: 2 3 8 Next Topic# |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India