题目描述:
Given an array of strings, return all groups of strings that are anagrams.
Note: All inputs will be in lower-case.
题目大意:
给定一个字符串数组,返回所有互为字谜(anagram,变位词)的字符串的分组。
注意:所有输入只包含小写字母
解题思路:
排序 + 哈希,使用Python的内置函数,例如reduce,filter等,可以简化代码。
Given an array of strings, return all groups of strings that are anagrams.
Note: All inputs will be in lower-case.
给定一个字符串数组,返回所有互为字谜(anagram,变位词)的字符串的分组。
注意:所有输入只包含小写字母
排序 + 哈希,使用Python的内置函数,例如reduce,filter等,可以简化代码。