Group Anagrams Together
Given an array/list of strings STR_LIST
, group the anagrams together and return each group as a list of strings. Each group must contain strings that are anagrams of each other.
Example:
STR_LIST = ["abc", "ged", "dge", "bac"]
Output:
[ ["abc", "bac"], ["ged", "dge"] ]
Explanation:
The words "abc" and "bac" are anagrams, so they form one group, and "ged" and "dge" form another group.
Constraints:
1 <= T <= 5
1 <= N <= 1000
1 <= |STR_LIST[i]| <= 100
STR_LIST[i]
contains only lowercase English letters.
Note:
An Anagram is a word or phrase formed by rearranging the letters of a different word or phrase.
Input:
The first line contains an integer 'T', the number of test cases.
Each test case starts with an integer 'N', the number of strings.
The following line contains 'N' space-separated strings.
Output:
For each test case, print the anagram groups with each group in a separate line.

AnswerBot
4mo
Group anagrams in a list of strings together and return each group as a list of strings.
Iterate through the list of strings and sort each string alphabetically to create a key for grouping.
Use a hashm...read more
Help your peers!
Add answer anonymously...
PayPal Full Stack Developer interview questions & answers
A Full Stack Developer was asked Q. Group Anagrams Together Given an array/list of strings STR_LIST, group the anagr...read more
A Full Stack Developer was asked Q. Rearrange String Problem Statement Given a string ‘S’, your task is to rearrange...read more
A Full Stack Developer was asked Q. Divide Two Integers Problem Statement You are given two integers dividend and di...read more
Popular interview questions of Full Stack Developer
A Full Stack Developer was asked Q1. Group Anagrams Together Given an array/list of strings STR_LIST, group the anagr...read more
A Full Stack Developer was asked Q2. Rearrange String Problem Statement Given a string ‘S’, your task is to rearrange...read more
A Full Stack Developer was asked Q3. Divide Two Integers Problem Statement You are given two integers dividend and di...read more
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

