diff --git a/algorithms/Python/trees/binaryTreeTraversals.py b/algorithms/Python/trees/binaryTreeTraversals.py index b6c211d4..33ee4605 100644 --- a/algorithms/Python/trees/binaryTreeTraversals.py +++ b/algorithms/Python/trees/binaryTreeTraversals.py @@ -6,7 +6,6 @@ Space Complexity: O(n) (Auxiliary space) """ from typing import Optional, Union from queue import Queue, LifoQueue -from random import randint class BinaryTreeNode: