From c7e9b0e5efd06a1abc0cd48b70308e221e892a01 Mon Sep 17 00:00:00 2001 From: Dylan Date: Sat, 11 Sep 2021 23:10:31 -0700 Subject: [PATCH] correction to example output --- lessons/depth-first-tree-traversals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lessons/depth-first-tree-traversals.md b/lessons/depth-first-tree-traversals.md index 10a5720..d5aa827 100644 --- a/lessons/depth-first-tree-traversals.md +++ b/lessons/depth-first-tree-traversals.md @@ -55,7 +55,7 @@ Postorder traversal, as you have guessed, you recursively call the method on the [8, 3, 1, 6, 4, 7, 10, 14, 13] // inorder -[1, 3, 5, 6, 7, 8, 10, 13, 14] +[1, 3, 4, 6, 7, 8, 10, 13, 14] // postorder [1, 4, 7, 6, 3, 13, 14, 10, 8]