2023每日刷题(一零一)
Leetcode—2942. 查找包含给定字符的单词
实现代码
class Solution {
public:vector<int> findWordsContaining(vector<string>& words, char x) {vector<int> ans;for(int i = 0; i < words.size(); i++) {string s = words[i];if(find(s.begin(), s.end(), x) != s.end()) {ans.push_back(i);}}return ans;}
};
运行结果
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!