Description
Given an arbitrary ransom note string and another string containing letters from all the magazines, write a function that will return true if the ransom note can be constructed from the magazines ; otherwise, it will return false.
Each letter in the magazine string can only be used once in your ransom note.
Note:
You may assume that both strings contain only lowercase letters.
canConstruct("a", "b") -> false
canConstruct("aa", "ab") -> false
canConstruct("aa", "aab") -> true
描述
给定一个赎金信 (ransom) 字符串和一个杂志(magazine)字符串,判断第一个字符串ransom能不能由第二个字符串magazines里面的字符构成。如果可以构成,返回 true ;否则返回 false。
(题目说明:为了不暴露赎金信字迹,要从杂志上搜索各个需要的字母,组成单词来表达意思。)
注意:
你可以假设两个字符串均只含有小写字母。
canConstruct("a", "b") -> false
canConstruct("aa", "ab") -> false
canConstruct("aa", "aab") -> true
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/ransom-note
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
思路
- ransomNote 中出现的字符必须都出现在 magazine 中。
- 使用字典,健为字符,值为字符出现的次数,用 ransomNote 对应的字典减去 magazine 对应的字典,如果结果为空,说明 ransomNote 中的字符全部在 magazine 中出现过。
# -*- coding: utf-8 -*- # @Author: 何睿 # @Create Date: 2019-07-30 07:58:59 # @Last Modified by: 何睿 # @Last Modified time: 2019-07-30 08:03:10 from collections import Counter class Solution: def canConstruct(self, ransomNote: str, magazine: str) -> bool: return not (Counter(ransomNote) - Counter(magazine))
源代码文件在 这里 。