Group Anagrams π€ΉββοΈ
Given an array of strings strs
, this function groups the anagrams together. The function can return the answer in any order.
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.
π Example Usage
π’ Example 1
π’ Example 2
π’ Example 3
π Constraints
1 <= strs.length <= 10^4
0 <= strs[i].length <= 100
strs[i]
consists of lowercase English letters.
Last updated