Merge pull request #2549 from heystone999/master

style(1020): 代码highlight
This commit is contained in:
程序员Carl
2024-06-05 10:28:37 +08:00
committed by GitHub

View File

@ -395,7 +395,7 @@ class Solution {
深度优先遍历
```Python3
```Python
class Solution:
def __init__(self):
self.position = [[-1, 0], [0, 1], [1, 0], [0, -1]] # 四个方向
@ -442,7 +442,7 @@ class Solution:
广度优先遍历
```Python3
```Python
class Solution:
def __init__(self):
self.position = [[-1, 0], [0, 1], [1, 0], [0, -1]] # 四个方向