Skip to content

Commit 06a26f4

Browse files
Merge pull request youngyangyang04#2549 from heystone999/master
style(1020): 代码highlight
2 parents 8f324c5 + fffec6e commit 06a26f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

problems/1020.飞地的数量.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ class Solution {
395395

396396
深度优先遍历
397397

398-
```Python3
398+
```Python
399399
class Solution:
400400
def __init__(self):
401401
self.position = [[-1, 0], [0, 1], [1, 0], [0, -1]] # 四个方向
@@ -442,7 +442,7 @@ class Solution:
442442

443443
广度优先遍历
444444

445-
```Python3
445+
```Python
446446
class Solution:
447447
def __init__(self):
448448
self.position = [[-1, 0], [0, 1], [1, 0], [0, -1]] # 四个方向

0 commit comments

Comments
 (0)