归档 2015年8月3日

[LeetCode]Anagrams

题目描述:

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等,可以简化代码。

解法I(字典+排序):

Python代码 ...

继续阅读

昨天

明天

归档