
Asked in Infosys and 4 others
Write a program to find duplicate characters in a given string and print the count of each character.

AnswerBot
10mo
Program to count duplicates in a string using Java
Create a HashMap to store characters and their counts
Iterate through the string and update the counts in the HashMap
Count the characters with counts g...read more
Anonymous
3y
in java, using a hashmap we can count the occurances as well as get the unique ones while doing so.
String str = "SoommeeString";
HashMap<Character,Integer> hm = new HashMap<>();
for(int i=0;i<str.len...read more
Help your peers!
Add answer anonymously...
Interview Questions from Popular Companies

3.7
• 8.8k Interviews

4.0
• 5.5k Interviews

3.5
• 4.2k Interviews

3.6
• 8k Interviews

3.7
• 6k Interviews

3.7
• 6.2k Interviews

3.5
• 4.2k Interviews

3.7
• 5.1k Interviews
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

