We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05975a3 commit 31782d1Copy full SHA for 31782d1
data_structures/kd_tree/build_kdtree.py
@@ -11,7 +11,7 @@ def build_kdtree(points: list[list[float]], depth: int = 0) -> KDNode | None:
11
(used to determine axis for splitting).
12
13
Returns:
14
- KDNode | None: The root node of the KD-Tree,
+ The root node of the KD-Tree,
15
or None if no points are provided.
16
"""
17
if not points:
0 commit comments