摘要: 242. 有效的字母异位词 ```cpp class Solution { public: bool isAnagram(string s, string t) { if(s.size()!=t.size()) return false; int ans[26]={0}; for(auto& ch: 阅读全文
posted @ 2023-05-30 11:23 冰糖人 阅读(81) 评论(0) 推荐(0) 编辑