摘要: 有效的字母异位词 题目链接242. 有效的字母异位词 - 力扣(LeetCode) class Solution { public: bool isAnagram(string s, string t) { int record[26] = {0}; for(int i = 0; i < s.siz 阅读全文
posted @ 2022-11-06 23:15 凱風快晴 阅读(18) 评论(0) 推荐(0)