2021/4/18 (周赛237)leetcode 5734.判断句子是否为全字母句

第 237 场力扣周赛、2021/4/18 (周赛237)leetcode 5734.判断句子是否为全字母句_第1张图片

class Solution {
     
public:
    bool checkIfPangram(string sentence) {
     
        unordered_map<char,int> re;
        for(auto c:sentence){
     
            if(c>='a'&&c<='z') re[c]++;
            else return false;
        }
        if(re.size()<26) return false;
        return true;
    }
};

作者:ni-hen-you-xiu-2
链接:https://leetcode-cn.com/problems/check-if-the-sentence-is-pangram/solution/hashbiao-by-ni-hen-you-xiu-2-lllt/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

不错 这个方法简单明了

你可能感兴趣的:(c++,leetcode,数据结构与算法)