Answers for "how to find the number of elements in an array java if there are duplicates"

1

java find duplicates in array

// Uses a set, which does not allow duplicates 

for (String name : names) 
{
     if (set.add(name) == false) 
     {
        // print name your duplicate element
     }
}
Posted by: Guest on May-09-2020

Code answers related to "how to find the number of elements in an array java if there are duplicates"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language