Progress0 / 20
Current question: 14 of 20
Group Anagrams
String•Medium
Amazon
Google
Microsoft
Mark as Solved
Problem Description
Given an array of strings strs, group the anagrams together. You can return the answer in any order.
Code Editor
Solution
Related Questions
- Longest Palindromic Substring(Medium)
Video Solutions
No video solutions available for this question yet. Check back soon!
Discussion
Alice2 hours ago
Great question! I found the two-pointer approach helpful.
Bob1 hour ago
I'm stuck on the edge case. Any hints?