diff --git a/3541. Find Most Frequent Vowel and Consonant b/3541. Find Most Frequent Vowel and Consonant new file mode 100644 index 0000000..f624fc0 --- /dev/null +++ b/3541. Find Most Frequent Vowel and Consonant @@ -0,0 +1,19 @@ +class Solution { +public: + int maxFreqSum(string s) { + int n = s.size(); + int hash[26] = {0}; + for(int i =0;i