Group Words by Anagrams

Hashing Contest Easy

Given an array of strings strs, group the words that are anagrams of each other. An anagram is a word formed by rearranging the letters of another word using all the original letters exactly once. You may return the groups in any order.

Constraints

  • 1 <= strs.length <= 104
  • 0 <= strs[i].length <= 100

Company Tags

[ ]