Update README.md

This commit is contained in:
bt3gl 2023-07-29 18:01:16 -07:00 committed by GitHub
parent 84d1bf598d
commit f32e58cc68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,7 +45,7 @@ def preorder(self, root):
return [root.val] + preorder(root.left) + preorder(root.right)
````
- top-down (parameters are passed down to children).
- top-down (parameters are passed down to children), so deserialize with a queue.
<br>