From 873f3bfa83128e47258f6874c952967f203ff1cb Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Wed, 20 May 2026 15:59:13 -0700 Subject: [PATCH] Add None example for 2026.05.13 homework --- notes-and-examples/2026.05.13/homework.py | 1 + 1 file changed, 1 insertion(+) diff --git a/notes-and-examples/2026.05.13/homework.py b/notes-and-examples/2026.05.13/homework.py index 5035c17..fe98b67 100644 --- a/notes-and-examples/2026.05.13/homework.py +++ b/notes-and-examples/2026.05.13/homework.py @@ -116,6 +116,7 @@ print("================ Searches ================") # is the search result giving us the expected node? print(test_tree.search(4) == test_tree.root.left.right) print(test_tree.search(6) == test_tree.root.right) +print(test_tree.search(20) is None) print("================ Removals ================")