Posted on 2023-12-16 18:28
Uriel 阅读(22)
评论(0) 编辑 收藏 引用 所属分类:
闲来无事重切Leet Code 、
Hash
求问两个字符串是否由完全相同的字母不同的组合而成,用python的count判断每个字出现次数
#242
#Runtime: 20 ms (Beats 96.2%)
#Memory: 13.7 MB (Beats 69.85%)
class Solution(object):
def isAnagram(self, s, t):
"""
:type s: str
:type t: str
:rtype: bool
"""
if len(s) != len(t):
return False
for i in set(s):
if s.count(i) != t.count(i):
return False
return True