Challenge: Count with Dictionary
Count occurrences with the dictionary.
We'll cover the following...
Problem statement
In this challenge, write a function count_letters(message)
that counts occurrences of each letter in message
using the defaultdict
...