有效的字母异位词添加一些说明

This commit is contained in:
borninfreedom
2021-06-13 11:14:21 +08:00
parent 0d3b8de512
commit 4993e9ff6b

View File

@ -130,7 +130,7 @@ class Solution:
return True
```
Python写法二
Python写法二没有使用数组作为哈希表只是介绍defaultdict这样一种解题思路
```python
class Solution: