...

/

Challenge: Group Anagrams

Challenge: Group Anagrams

Solve the challenge of finding group anagrams in a list of strings.

Problem statement

Given a list of strings that contain 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 technically not anagrams ...