【leetcode】242. 有效的字母异位词 (python)

艾晓雪

关注

阅读 48

2022-04-26

在这里插入图片描述

import collections
class Solution(object):
    def isAnagram(self, s, t):
        """
        :type s: str
        :type t: str
        :rtype: bool
        """
        s_dic = collections.Counter(s)
        t_dic = collections.Counter(t)
        if s_dic == t_dic:
            return True
        return False

相关推荐

精彩评论(0)

0 0 举报