Challenge: Group Anagrams
We'll cover the following...
Problem Statement
Given an array of strings that contains anagrams, write a function to print pairs of those anagrams.
Input
An array of strings. Remember that spaces count as characters! So " abc" and “cab” are technically not anagrams since " abc" has ...