#24 - Count Letter Frequency
You are given a string. Your task is to implement a function that counts the frequency of each letter in the string.
Ignore case sensitivity. Consider 'A' and 'a' as the same letter.
Ignore non-alphabetic characters
Example 1
Input
Output
Example 2
Input
Output
Last updated