2023每日刷题(六十五)
Leetcode—2828.判别首字母缩略词
实现代码
class Solution {
public:
bool isAcronym(vector<string>& words, string s) {
int i = 0;
int len1 = words.size();
int len2 = s.size();
if(len1 != len2) {
return false;
}
for(auto word: words) {
if(s[i] != word[0]) {
return false;
}
i++;
}
return true;
}
};
运行结果
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!