代码随想录 Leetcode242. 有效的字母异位词

题目:

代码随想录 Leetcode242. 有效的字母异位词_第1张图片


代码(首刷看解析 2024年1月14日):

class Solution {
public:
    bool isAnagram(string s, string t) {
        int hash[26] = {0};
        for(int i = 0; i < s.size(); ++i) {
            hash[s[i] - 'a']++;
        }
        for(int i = 0; i < t.size(); ++i) {
            hash[t[i] - 'a']--;
        }
        for(int i = 0; i < 26; ++i){
            if(hash[i] != 0) {
                return false;
            }
        }
        return true;
    }
};

你可能感兴趣的:(#,leetcode,---,easy,c++,算法,哈希算法)