Skip to content

Commit 2d6c7b4

Browse files
authored
Update 438._Find_All_Anagrams_in_a_String.md
1 parent 460dbad commit 2d6c7b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/Leetcode_Solutions/Python/438._Find_All_Anagrams_in_a_String.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class Solution(object):
7070
> 思路 1
7171
******- 时间复杂度: O(N)******- 空间复杂度: O(1)******
7272

73-
于是用双指针,left和right都从0开始往后遍历
73+
于是用双指针,start 和 end 都从0开始往后遍历, beats 59.28%
7474

7575
```python
7676
class Solution(object):

0 commit comments

Comments
 (0)