码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode开心刷题二十六天——49.Group Anagrams

时间:2019-07-26 19:48:57      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:for   str   array   medium   tle   title   main   bat   sorted   

49. Group Anagrams
Medium

Given an array of strings, group anagrams together.

Example:

Input: ["eat", "tea", "tan", "ate", "nat", "bat"],
Output:
[
  ["ate","eat","tea"],
  ["nat","tan"],
  ["bat"]
]
bonus:
1.join function usage:
str = "-";
seq = ("a", "b", "c"); # 字符串序列
print str.join( seq );
result:
a-b-c

 

class Solution:
    def groupAnagrams(self, strs):
        res = {}
        for item in strs:
            k = ‘‘.join(sorted(item))  # 字符串排序
            print("k")
            print(k)
            print("sorted")
            print(sorted(item))
            if k not in res:  # 判断是否存在
                res[k] = []
            res[k].append(item)  # 相同字符串放到同一个字典 k中
        return [res[x] for x in res]  # 输出结果


if __name__ == __main__:
    strs = [eat, tea, tan, ate, nat, bat]
    solu = Solution()
    print(solu.groupAnagrams(strs))

 

 

LeetCode开心刷题二十六天——49.Group Anagrams

标签:for   str   array   medium   tle   title   main   bat   sorted   

原文地址:https://www.cnblogs.com/Marigolci/p/11252171.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!