dapaogege

导航

 

2025年12月20日

摘要: leocde242 class Solution { public: bool isAnagram(string s, string t) { int arr[26]={0}; for(int i=0;i<s.length();i++){ //字符串是length arr[s[i]-'a']+=1; 阅读全文
posted @ 2025-12-20 16:00 dapaogege 阅读(4) 评论(0) 推荐(0)