Merge pull request #2549 from heystone999/master
style(1020): 代码highlight
This commit is contained in:
commit
06a26f47f1
|
|
@ -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