leetcode:383. 赎金信(简单,字符串)

题目:

leetcode:383. 赎金信(简单,字符串)

代码:自己写的,不错

class Solution:
    def canConstruct(self, ransomNote: str, magazine: str) -> bool:
        c = set(ransomNote)
        for c1 in c:
            if ransomNote.count(c1)>magazine.count(c1):
                return False
        return True

1.set,直接提取字符串中的元索去重。

2.字符串的count函数。

上一篇:383,不使用“+”,“-”,“×”,“÷”实现四则运算


下一篇:2021-05-17