摘要:
  阅读全文
posted @ 2022-02-02 21:51
一刹流云散
阅读(64)
评论(0)
推荐(0)
摘要:
##有效的字母异位词 class Solution { public boolean isAnagram(String s, String t) { int[] record=new int[26]; for(char c:s.toCharArray()) { record[c-'a']++; } 阅读全文
posted @ 2022-02-02 20:56
一刹流云散
阅读(37)
评论(0)
推荐(0)