Interview Query

Groups of Anagrams

Start Timer

0:00:00

Upvote
4
Downvote
Save question
Mark as completed
View comments (2)
Next question

Write a Python function called group_anagrams that takes a list of strings as input and returns a list of lists, where each inner list contains a group of anagrams that were present in the input list.

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

Note: Each of the inner lists should be ordered alphabetically and contain no duplicate values

Example:

Input:

words = ["eat", "tea", "tan", "ate", "nat", "bat"]

Output:

[  
  ["nat","tan"],
  ["ate","eat", "tea"],
  ["bat"]
]

Explanation:

In the example, the words “eat”, “tea”, and “ate” are anagrams of each other, as are the words “tan” and “nat”. The word “bat” does not have any anagrams in the input list, and therefore is listed on its own. The function then groups the anagrams together and returns a list of lists representing these groups.

Each of the lists representing a group of anagrams is sorted in alphabetical order.

.
.
.
.
.


Comments

Loading comments