From f32e58cc68313d113518ac1ef0bcede9e6a72a6f Mon Sep 17 00:00:00 2001 From: bt3gl <138340846+cypher-bt3gl@users.noreply.github.com> Date: Sat, 29 Jul 2023 18:01:16 -0700 Subject: [PATCH] Update README.md --- trees_and_graphs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trees_and_graphs/README.md b/trees_and_graphs/README.md index a8a5426..812f98e 100644 --- a/trees_and_graphs/README.md +++ b/trees_and_graphs/README.md @@ -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.