Skip to content

Commit 76b34e8

Browse files
authored
Update red_black_tree.py
1 parent 11c74ec commit 76b34e8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

data_structures/binary_tree/red_black_tree.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
from __future__ import annotations
22

3-
from collections.abc import Iterator
43
import doctest
4+
from collections.abc import Iterator
55
from pprint import pformat
66

7-
87
class RedBlackTree:
98
"""
109
A Red-Black tree, which is a self-balancing BST (binary search

0 commit comments

Comments
 (0)