public boolean isAnagram(String s, String t) {
if (s.length() !=t.length())
return false
int[] table = new int[62]
for (int i=0;i<s.length();i++){
table[s.charAt(i)-'a']++;
}
for (int i=0;i<t.length();i++){
table[s.charAt(i)-'a']--;
if (table[t.charAt(i)-'a']<0){
return false;
}
}
return true;
}
ailinyingai
发布了345 篇原创文章 · 获赞 8 · 访问量 5万+
关注
相关文章
- 01-27力扣242. 有效的字母异位词(简单的计数数组)
- 01-27找到字符串中的所有字母异位词
- 01-27leetcode 找出字符串所有字母异位词 中等
- 01-27力扣--242有效的字母异位词
- 01-27LeetCode49 - 字母异位词分组
- 01-27LeetCode49.字母异位词分组(中等,分组)
- 01-27leetcode49.字母异位词分组
- 01-27leetcode242之有效的字母异位词
- 01-27LeetCode242有效字母异位词
- 01-27leetCode242 有效的字母异位词