...

/

Challenge: Group Anagrams

Challenge: Group Anagrams

This challenge is about finding the anagrams in an array.

An anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once.

Problem statement

Given an array of strings that contains anagrams, write a function to print those anagrams.

Input

The input is an array of ...