Group Anagrams - Medium
https://leetcode.com/problems/group-anagrams/
done
1. Iterate each word
1.1 Create a dictionary for each word, letter is a key and appearance count is value
2. Another dictionary - key is the dictionary from 1.1, and value is list of words