摘要: 本题我们只需要将所有首字母取出来,并与s比较即可。 class Solution { public: bool isAcronym(vector<string>& words, string s) { string res; for(auto &it: words) { res += it[0]; 阅读全文
posted @ 2023-08-20 15:00 深渊之巅 阅读(24) 评论(0) 推荐(0) 编辑