diff --git a/data_structures/binary tree/AVLtree.py b/data_structures/binary tree/AVLtree.py index 5c72e273f..cb27004b6 100644 --- a/data_structures/binary tree/AVLtree.py +++ b/data_structures/binary tree/AVLtree.py @@ -253,35 +253,3 @@ if __name__ == "__main__": for i in l: t.del_node(i) t.traversale() - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -