LeetCode刷题之383Python赎金信

题目:

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

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

注意:

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

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

我的解答:

和题350两个数组的交集II的思路一样。先求出不重复元素集,再看赎金中的字符是否在杂志中且两者数目相等。

class Solution(object):
    def canConstruct(self, ransomNote, magazine):
        """
        :type ransomNote: str
        :type magazine: str
        :rtype: bool
        """
        if ransomNote == magazine:
            return True
        elif magazine == '':
            return False
        elif ransomNote == '' :
            return True
        
        r = set(ransomNote)
        m = set(magazine)
        for i in r:
            if i not in m:
                return False
        for i in r:
            c1 = ransomNote.count(i)
            c2 = magazine.count(i)
            if c1 > c2:
                return False
        return True

 

你可能感兴趣的:(LeetCode)