LeetCode #242. Valid Anagram
题目
解题方法
实际上就是看看两个字符串中的元素是否一致,且出现次数也相同。
时间复杂度:O(n)
空间复杂度:O(n)
代码
class Solution:
def isAnagram(self, s: str, t: str) -> bool:
return collections.Counter(s) == collections.Counter(t)
实际上就是看看两个字符串中的元素是否一致,且出现次数也相同。
时间复杂度:O(n)
空间复杂度:O(n)
class Solution:
def isAnagram(self, s: str, t: str) -> bool:
return collections.Counter(s) == collections.Counter(t)