Python 解leetcode:49. Group Anagrams

Posted 潇湘旧友

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 解leetcode:49. Group Anagrams相关的知识,希望对你有一定的参考价值。

  • 题目描述:给出一个由字符串组成的数组,把数组中字符串的组成字母相同的部分放在一个数组中,并把组合后的数组输出;

  • 思路:
  1. 使用一个字典,键为数组中字符串排序后的部分,值为排序后相同的字符串组成的列表;
  2. 遍历数组完成后,返回字典的值就可以了。
class Solution(object):
    def groupAnagrams(self, strs):
        """
        :type strs: List[str]
        :rtype: List[List[str]]
        """
        ret = {}
        for s in strs:
            ts = ‘‘.join(sorted(s))
            if ret.get(ts):
                ret[ts].append(s)
            else:
                ret[ts] = [s]
        return ret.values()

以上是关于Python 解leetcode:49. Group Anagrams的主要内容,如果未能解决你的问题,请参考以下文章

Python解Leetcode: 226. Invert Binary Tree

Python 解leetcode:728. Self Dividing Numbers

Python 解LeetCode:367. Valid Perfect Square

Python 解LeetCode:394 Decode String

Python解Leetcode: 539. Minimum Time Difference

Python 解LeetCode:680. Valid Palindrome II