其他分享
首页 > 其他分享> > leetcode242_有效的字母异位词

leetcode242_有效的字母异位词

作者:互联网

class Solution {
    public boolean isAnagram(String s, String t) {
        if (s.length() != t.length()) {
            return false;
        }
        int[] table = new int[26];
        for (int i = 0; i < s.length(); i++) {
            table[s.charAt(i) - 'a']++;
        }
        for (int i = 0; i < t.length(); i++) {
            table[t.charAt(i) - 'a']--;
            if (table[t.charAt(i) - 'a'] < 0) {
                return false;
            }
        }
        return true;
    }
}

标签:leetcode242,return,charAt,int,异位,字母,++,length,table
来源: https://www.cnblogs.com/huangming-zzz/p/15881369.html