We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deea6b0 commit baab804Copy full SHA for baab804
problems/二叉树的递归遍历.md
@@ -189,7 +189,7 @@ class Solution:
189
res.append(node.val)
190
dfs(node.left)
191
dfs(node.right)
192
-
+ dfs(root)
193
return res
194
195
```
@@ -206,7 +206,7 @@ class Solution:
206
207
208
209
210
211
212
```python
@@ -224,7 +224,7 @@ class Solution:
224
225
226
227
228
229
230
0 commit comments