From da414d89d953ba91af032ef8a3f3fda627201d70 Mon Sep 17 00:00:00 2001 From: Francisco Matias Date: Tue, 20 Jun 2017 04:43:00 -0300 Subject: [PATCH] fixed error --- .../Binary Tree/binary_seach_tree.py | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/data_structures/Binary Tree/binary_seach_tree.py b/data_structures/Binary Tree/binary_seach_tree.py index 8e708e660..81532ee22 100644 --- a/data_structures/Binary Tree/binary_seach_tree.py +++ b/data_structures/Binary Tree/binary_seach_tree.py @@ -75,27 +75,3 @@ class BinarySearchTree: def getRoot(self): return self.root - -''' -Example - 8 - / \ - 3 10 - / \ \ - 1 6 14 - / \ / - 4 7 13 -''' - -t = BinarySearchTree() -t.insert(8) -t.insert(3) -t.insert(1) -t.insert(6) -t.insert(4) -t.insert(7) -t.insert(10) -t.insert(14) -t.insert(13) - -t.preShow(t.getRoot()) \ No newline at end of file