Group Anagrams
Given an array of strings, group anagrams together.
(将使用相同字符构成的不同排列的单词合并)
Note:
- All inputs will be in lowercase.
- The order of your output does not matter.
Example:
1. 哈希表 / Dict
遍历数组中的每一个单词,将每个单词根据所组成的字符排序从而得到哈希表的key。具体实现过程如下:
1 | class Solution: |