摘要: 第二题:389. 找不同 点击查看代码 class Solution { public: char findTheDifference(string s, string t) { vector<int> cnt(26,0); for(char ch:s){ cnt[ch-'a']++; } for( 阅读全文
posted @ 2025-03-14 16:59 一点都不无聊 阅读(17) 评论(0) 推荐(0)