文章目录
题目分析
对于vector中的每一个字符串,遍历之,如果出现不同的字母就放弃,继续遍历下一个,如果该字符串中的每个字母都是allowed中的,计数器加1.
ac代码
class Solution {
public:
int countConsistentStrings(string allowed, vector<string>& words) {
int n = words.size();
int res=0;
for(int i=0;i<n;i++){
string t=words[i];
// cout<<t<<endl;
for(int j=0;j<t.size();j++){
if( allowed.find(t[j])==-1) break;
if(j==t.size()-1) res++;
}
}
return res;
}
};