LeetCode #242. Valid Anagram

题目

242. Valid Anagram


解题方法

实际上就是看看两个字符串中的元素是否一致,且出现次数也相同。
时间复杂度:O(n)
空间复杂度:O(n)


代码

class Solution:
    def isAnagram(self, s: str, t: str) -> bool:
        return collections.Counter(s) == collections.Counter(t)
posted @ 2020-12-07 14:13  老鼠司令  阅读(47)  评论(0编辑  收藏  举报