第一种:排序然后对比(效率较低)
return sorted(s) == sorted(t)
第二种:使用 collections.Counter() 统计词频 (效率较高)
return collections.Counter(s) == collections.Counter(t)
第一种:排序然后对比(效率较低)
return sorted(s) == sorted(t)
第二种:使用 collections.Counter() 统计词频 (效率较高)
return collections.Counter(s) == collections.Counter(t)