码迷,mamicode.com
首页 > 编程语言 > 详细

算法36---赎金信(两个字符串比较)

时间:2018-09-17 10:27:05      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:ons   单词   move   代码   elf   第一个字符   note   杂志   ret   

1、题目:

给定一个赎金信 (ransom) 字符串和一个杂志(magazine)字符串,判断第一个字符串ransom能不能由第二个字符串magazines里面的字符构成。如果可以构成,返回 true ;否则返回 false。

(题目说明:为了不暴露赎金信字迹,要从杂志上搜索各个需要的字母,组成单词来表达意思。)

注意:

你可以假设两个字符串均只含有小写字母。

canConstruct("a", "b") -> false
canConstruct("aa", "ab") -> false
canConstruct("aa", "aab") -> true

2、思路:

①删

②set+count

3、代码:

    def canConstruct(self, ransomNote, magazine):
        """
        :type ransomNote: str
        :type magazine: str
        :rtype: bool
        """
        ‘‘‘

#删
        b= list(magazine)
        for aa in ransomNote:
            if aa not in b:
                return False
            b.remove(aa)
        return True
        ‘‘‘
#set + count
        a = set(ransomNote)

        for aa in a:
            if ransomNote.count(aa) > magazine.count(aa):
                return False
        return True    

 

 

算法36---赎金信(两个字符串比较)

标签:ons   单词   move   代码   elf   第一个字符   note   杂志   ret   

原文地址:https://www.cnblogs.com/Lee-yl/p/9660557.html

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