Leetcode 5734. 判断句子是否为全字母句(DAY 89)---- 周赛题目

第一题 5734. 判断句子是否为全字母句 Easy


原题题目

Leetcode 5734. 判断句子是否为全字母句(DAY 89)---- 周赛题目_第1张图片


第一题 比赛AC代码


class Solution {
     
public:
    bool checkIfPangram(string sentence) {
     
        vector<bool> dp(26,false);
        for(const auto& chr:sentence)
        {
     
            if(!isalpha(chr) || !islower(chr)) return false;
            dp[chr-'a'] = true;
        }
        for(const auto& temp:dp)
            if(!temp)   return false;
        return true;
    }
};

你可能感兴趣的:(从c++开始的进步之路,c++)