Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Array Exercises: Find the duplicate values of an array of string values

Java Array: Exercise-13 with Solution

Write a Java program to find the duplicate values of an array of string values.

Pictorial Presentation:

Java Array Exercises: Find the duplicate values of an array of string values

Sample Solution:

Java Code:

public class Exercise13 {
public static void main(String[] args) 
    {
        String[] my_array = {"bcd", "abd", "jude", "bcd", "oiu", "gzw", "oiu"};
 
        for (int i = 0; i < my_array.length-1; i++)
        {
            for (int j = i+1; j < my_array.length; j++)
            {
                if( (my_array[i].equals(my_array[j])) && (i != j) )
                {
                    System.out.println("Duplicate Element is : "+my_array[j]);
                }
            }
        }
    }    
}

Sample Output:

Duplicate Element is : bcd                                                                                    
Duplicate Element is : oiu

Flowchart:

Flowchart: Java exercises: Find the duplicate values of an array of string values

Visualize Java code execution (Python Tutor):


Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to find the duplicate values of an array of integer values.
Next: Write a Java program to find the common elements between two arrays (string values).

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe