Daily LeetCode – day0060 面试题 01.02. Check Permutation LCCI

// 面试题 01.02. Check Permutation LCCI
class Solution {
    public boolean CheckPermutation(String s1, String s2) {
        if (s1.length() != s2.length()) return false;
        int len = s1.length();
        int[] count = new int[123];
        for (int i = 0; i < len; ++i) {
            ++count[s1.charAt(i)];
            --count[s2.charAt(i)];
        }
        for (int i = 97; i < 123; ++i) {
            if (count[i] != 0) return false;
        }
        return true;
    }
}
学习笔记:
连续困难题之后,今天终于轮到了一道简单题。
这是一道计数的问题,很简单就完成了。0ms击败100%。


关于樊轶群

一个善良的理想主义者。
此条目发表在每日LeetCode分类目录。将固定链接加入收藏夹。

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注