2019-09-17 LC49 Group Anagrams

49. Group Anagrams

Given an array of strings, group anagrams together.
Example:

Input: ["eat", "tea", "tan", "ate", "nat", "bat"],
Output:
[
["ate","eat","tea"],
["nat","tan"],
["bat"]
]

https://leetcode.wang/leetCode-49-Group-Anagrams.html

Solution1

Time O(NKlogK) N is # of string , K is max length
Space O(NK) store in res
注意问题:
python :

  • sorted(list)返回new list
  • list.sort() 直接对list进行modifiy 返回NONE
  • dict 的 key should be immutable
class Solution(object):
    def groupAnagrams(self, strs):
        """
        :type strs: List[str]
        :rtype: List[List[str]]
        """
        res = {}
        
        for s in strs:
            key = tuple(sorted(s))
            if res.has_key():
                res[key].append(s)
            else:
                res[key] = [s]
        return res.values()

Solution2

新建一个【0,0,0... 】26*1的listcount出钱频次
然后以他为key建dict

class Solution(object):
    def groupAnagrams(self, strs):
        """
        :type strs: List[str]
        :rtype: List[List[str]]
        """
        res = {}
       
        for s in strs:
            a = [0]*26
            for c in s:
                a[ord(c)-ord('a')] +=1
            
            key = tuple(a)
            if res.has_key(key):
                res[key].append(s)
            else:
                res[key] = [s]
        return res.values() 
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容