Challenge: Group Anagrams
This challenge is about finding the anagrams in a list.
We'll cover the following...
Problem statement
Given a list of strings that contains anagrams, write a function to print pairs of those anagrams.
Input
A list of strings. Remember that spaces count as characters. So, " abc" and “cab” are ...