...

/

Challenge: Group Anagrams

Challenge: Group Anagrams

This challenge is about finding the anagrams in a list.

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 ...