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.
2 parents 1f1fe28 + 2d0b16c commit 73f9904Copy full SHA for 73f9904
problems/二叉树的递归遍历.md
@@ -189,7 +189,8 @@ class Solution:
189
res.append(node.val)
190
dfs(node.left)
191
dfs(node.right)
192
-
+
193
+ dfs(root)
194
return res
195
196
```
@@ -206,7 +207,8 @@ class Solution:
206
207
208
209
210
211
212
213
214
```python
@@ -224,7 +226,8 @@ class Solution:
224
226
225
227
228
229
230
231
232
233
0 commit comments