From 72c217c37eb2ad694eeb9cb360d1cd65b2d52e8d Mon Sep 17 00:00:00 2001 From: Harshil Date: Fri, 23 Nov 2018 18:23:06 +0100 Subject: [PATCH] Update AVLtree.py Removed blank lines (256 to 287)! --- data_structures/binary tree/AVLtree.py | 32 -------------------------- 1 file changed, 32 deletions(-) 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() - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -