C++ | Leetcode C++题解之第383题赎金信

题目:

C++ | Leetcode C++题解之第383题赎金信_第1张图片
题解:

class Solution {
public:
    bool canConstruct(string ransomNote, string magazine) {
        if (ransomNote.size() > magazine.size()) {
            return false;
        }
        vector cnt(26);
        for (auto & c : magazine) {
            cnt[c - 'a']++;
        }
        for (auto & c : ransomNote) {
            cnt[c - 'a']--;
            if (cnt[c - 'a'] < 0) {
                return false;
            }
        }
        return true;
    }
};

你可能感兴趣的:(经验分享,C++,Leetcode,题解)