Merge pull request #2145 from Ao-Last/patch-1

修复 0242.有效的字母异位词.md md格式错误
This commit is contained in:
程序员Carl 2023-07-11 11:26:14 +08:00 committed by GitHub
commit 88cba5e94e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -163,6 +163,7 @@ class Solution(object):
a_count = Counter(s)
b_count = Counter(t)
return a_count == b_count
```
Go