力扣刷题 第二题 赎金信

第二题 赎金信

给你两个字符串:ransomNote 和 magazine ,判断 ransomNote 能不能由 magazine 里面的字符构成。
如果可以,返回 true ;否则返回 false 。
magazine 中的每个字符只能在 ransomNote 中使用一次。

示例 1:
输入:ransomNote = “a”, magazine = “b”
输出:false

来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/ransom-note

class Solution {
   
public:
    bool canConstruct(string ransomNote, string magazine) {
   
        

你可能感兴趣的:(力扣刷题专栏,leetcode,算法,职场和发展)