摘要:
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)
浙公网安备 33010602011771号