C#: Count the number of duplicate characters in a string
Write a C# Sharp program to count the number of duplicate characters (case sensitive) including spaces in a given string. If there are no duplicates, return 0.
Sample Data:
("Red Green WHITE") -> 2
("ppqrrsttuuu") -> 4
("dow jones industrial average") -> 9
Sample Solution-1:
C# Sharp Code:
Sample Output:
Original String: Red Green WHITE Number of duplicate characters in the said string: 2 Original String: ppqrrsttuuu Number of duplicate characters in the said string: 4 Original String: dow jones industrial average Number of duplicate characters in the said string: 9
Flowchart :

Sample Solution-2:
C# Sharp Code:
Sample Output:
Original String: Red Green WHITE Number of duplicate characters in the said string: 2 Original String: ppqrrsttuuu Number of duplicate characters in the said string: 4 Original String: dow jones industrial average Number of duplicate characters in the said string: 9
Flowchart :

C# Sharp Code Editor:
Improve this sample solution and post your code through Disqus
Previous C# Sharp Exercise: Reverse an integer and add with the original number.
Next C# Sharp Exercise: Count Occurrences of a substring in a string.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics