Leetcode字符串题目

Leetcode字符串题目_第1张图片

1

ss=list(s)
tt=list(t)
ss.sort()
tt.sort()
return ss==tt

时间复杂度更低的代码

2

dict1={}
dict2={}
for ch in s:
    dict1[ch]=dict1.get(ch,0)+1   # 如果有ch,则原有位置加一,没有的话就创建了(0+1)
for ch in t:
    dict2[ch]=dict2.get(ch,0)+1
return dict1==dict2
    

你可能感兴趣的:(leetcode,算法)