lintcode练习 - 171. 乱序字符串

204 篇文章 0 订阅
190 篇文章 5 订阅

171. 乱序字符串

给出一个字符串数组S,找到其中所有的乱序字符串(Anagram)。如果一个字符串是乱序字符串,那么他存在一个字母集合相同,但顺序不同的字符串也在S中。

样例

对于字符串数组 ["lint","intl","inlt","code"]

返回 ["lint","inlt","intl"]

挑战

What is Anagram?

  • Two strings are anagram if they can be the same after change the order of characters.

注意事项

所有的字符串都只包含小写字母

解题思路:

既然是乱序的字符串,那么排序以后应该是相等的。

用一个hash表保存所有的元素,排序后相同的元素放在与一个列表中。

遍历hash表,列表中元素个数大于1,则存在乱序字符串。

class Solution:
    """
    @param strs: A list of strings
    @return: A list of strings
    """
    def anagrams(self, strs):
        # write your code here
        hashmap = {}
        res = []
        for item in strs:
            sort_item = ''.join(sorted(item))
            if sort_item in hashmap:
                hashmap[sort_item].append(item)
            else:
                hashmap[sort_item] = [item]
        for key in hashmap:
            if len(hashmap[key]) > 1:
                res += hashmap[key]
        
        return res

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值