package CountElements;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
public class findduplicate {
public static void main (String args[]) {
String str2 = "findduplicateelementsinarray";
String[] ary = str2.split("");
ArrayList<String> list = new ArrayList<String>(Arrays.asList(ary));
//Set does not allow duplicate elements
Set<String> str1 = new HashSet<String>();{
for ( String str21 : list) {
if (str1.add(str21) == false) {
System.out.println(str21 + " occurs: " + Collections.frequency(list, str21) +": is the Duplicate Element");
}else if (Collections.frequency(list, str21) < 2) {
System.out.println(str21 + " occurs: " + Collections.frequency(list, str21));
}
}
}}
}
*************************************************
API Testing Interview Question Set:
https://automationreinvented.blogspot.com/search/label/Rest-API
Kubernetes Interview Question Set
https://automationreinvented.blogspot.com/search/label/Kubernetes
Docker Interview Question Set
https://automationreinvented.blogspot.com/2020/02/top-18-docker-commands-for-aytomation.html
Linux Interview question Set
https://automationreinvented.blogspot.com/search/label/Linux
Automation Testing/SDET Framework Design
https://automationreinvented.blogspot.com/search/label/FrameworkDesign
Java Related Interview Question Set
https://automationreinvented.blogspot.com/search/label/Java
GIT Interview Question Set:
https://automationreinvented.blogspot.com/search/label/GIT
Coding Interview Question Set:
https://automationreinvented.blogspot.com/search/label/Coding%20Questions
Note: Ask me questions in the comment section, or any doubts on the above post.
Click To Learn most asked Interview question
Java questions:
Most asked Java Interview Questions
No comments:
Post a Comment