style: 代码highlight
This commit is contained in:
parent
ee99a72d18
commit
fffec6ec91
|
|
@ -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]] # 四个方向
|
||||
|
|
|
|||
Loading…
Reference in New Issue