Find Most Frequent Vowel and Consonant
You are given a string s consisting of lowercase English letters ('a' to 'z').
Your task is to:
- Find the vowel (one of
'a','e','i','o', or'u') with the maximum frequency. - Find the consonant (all other letters excluding vowels) with the maximum frequency.
Return the sum of the two frequencies.
Note: If multiple vowels or consonants have the same maximum frequency, you may choose any one of them. If there are no vowels or no consonants in the string, consider their frequency as 0.
The frequency of a letter x is the number of times it occurs in the string.
Example 1
Input
s = "successes"Output
6The maximum vowel frequency is 2 for
'e', and the maximum consonant frequency is 4 for 's', so the output is 2 + 4 = 6.Example 2
Input
s = "aeiaeia"Output
3The maximum vowel frequency is 3 for
'a', and there are no consonants so the maximum consonant frequency is 0, making the output 3 + 0 = 3.Constraints
- 1 <= s.length <= 100
- s consists of lowercase English letters only.