Explanation
In this program, we need to find the duplicate characters in the string.
Great responsibility
To find the duplicate character from the string, we count the occurrence of each character in the string. If count is greater than 1, it implies that a character has a duplicate entry in the string. In above example, the characters highlighted in green are duplicate characters.
Algorithm
- Define a string.
- Two loops will be used to find the duplicate characters. Outer loop will be used to select a character and initialize variable count by 1.
- Inner loop will compare the selected character with rest of the characters present in the string.
- If a match found, it increases the count by 1 and set the duplicates of selected character by '0' to mark them as visited.
- After inner loop, if count of character is greater than 1, then it has duplicates in the string.
Input:
string = "Great responsibility"
Output:
Duplicate characters in a given string:
r
e
t
s
i
Python
Output:
C
Output:
JAVA
Output:
C#
Output:
PHP
Output: