1、题目
全字母句 指包含英语字母表中每个字母至少一次的句子。
给你一个仅由小写英文字母组成的字符串 sentence ,请你判断 sentence 是否为 全字母句 。
如果是,返回 true ;否则,返回 false 。
示例 1:
输入:sentence = “thequickbrownfoxjumpsoverthelazydog”
输出:true
解释:sentence 包含英语字母表中每个字母至少一次。
示例 2:
输入:sentence = “leetcode”
输出:false
提示:
1 sentence 由小写英语字母组成
2、解
直接在sentence中查找是否包含所有的小写字母。
bool chekIfPangram(string s服务器托管网entence)
{
for(char s = 'a' ; s 'z' + 1; s++)
{
if(string::npos == sentence.find(s)) return false;
}
return true;
}
另解
遍历 sentence中的每个字符 c,如果 c 是字母表中的第 i (0≤i
bool chekIfPangramA(string sentence)
{
vectorint> words(26);
for(auto s : sentence){
words[s - 'a'] == 1;
}
for(auto w : words)
{
if(0 == w) return false;
}
retu服务器托管网rn true;
}
另解
还可以记录sentence中每个出现过的字母,最后判断是否为26个。
bool checkIfPangramC(string sentence)
{
unordered_mapchar, int> sen;
for(auto s : sentence)
{
sen[s]++;
}
return 26 == sen.size();
}
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
相关推荐: 智慧文旅|故宫文旅运营管理大屏,开启智能旅游新篇章
智慧文旅是旅游业的未来发展趋势,它既有利于文化的传承与传播,又能满足人们对旅游体验的需求。智慧文旅的核心理念是结合现代科技与传统文化,打造独特的旅游目的地,让游客在旅行中获得知识的启迪和文化的享受。智慧文旅是旅游业的未来,它不仅可以促进经济发展,还可以推动文化…