We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c09ac1 commit bab43e7Copy full SHA for bab43e7
data_structures/kd_tree/kd_node.py
@@ -12,7 +12,7 @@ def __init__(
12
self,
13
point: list[float],
14
left: KDNode | None = None,
15
- right: KDNode | None = None,
+ right: KDNode | None = None,
16
) -> None:
17
"""
18
Initializes a KDNode with the given point and child nodes.
0 commit comments