摘要: 5637. 判断字符串的两半是否相似 题意 如果字符串的两半相似,则两半拥有的元音字母个数应该相同 class Solution { public: int count(string s){ int res=0; set<char>S({'a','e','i','o','u'}); for(auto 阅读全文
posted @ 2020-12-27 17:53 voids5 阅读(43) 评论(0) 推荐(0) 编辑