Skip to content

Commit 729c1f9

Browse files
[pre-commit.ci] pre-commit autoupdate (#11557)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.6.3 → v0.6.4](astral-sh/ruff-pre-commit@v0.6.3...v0.6.4) - [github.com/tox-dev/pyproject-fmt: 2.2.1 → 2.2.3](tox-dev/pyproject-fmt@2.2.1...2.2.3) * updating DIRECTORY.md --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <pre-commit-ci[bot]@users.noreply.github.com>
1 parent f16d38f commit 729c1f9

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

Diff for: .pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repos:
1616
- id: auto-walrus
1717

1818
- repo: https://github.com/astral-sh/ruff-pre-commit
19-
rev: v0.6.3
19+
rev: v0.6.4
2020
hooks:
2121
- id: ruff
2222
- id: ruff-format
@@ -29,7 +29,7 @@ repos:
2929
- tomli
3030

3131
- repo: https://github.com/tox-dev/pyproject-fmt
32-
rev: "2.2.1"
32+
rev: "2.2.3"
3333
hooks:
3434
- id: pyproject-fmt
3535

Diff for: DIRECTORY.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,15 @@
243243
* [Min Heap](data_structures/heap/min_heap.py)
244244
* [Randomized Heap](data_structures/heap/randomized_heap.py)
245245
* [Skew Heap](data_structures/heap/skew_heap.py)
246+
* Kd Tree
247+
* [Build Kdtree](data_structures/kd_tree/build_kdtree.py)
248+
* Example
249+
* [Example Usage](data_structures/kd_tree/example/example_usage.py)
250+
* [Hypercube Points](data_structures/kd_tree/example/hypercube_points.py)
251+
* [Kd Node](data_structures/kd_tree/kd_node.py)
252+
* [Nearest Neighbour Search](data_structures/kd_tree/nearest_neighbour_search.py)
253+
* Tests
254+
* [Test Kdtree](data_structures/kd_tree/tests/test_kdtree.py)
246255
* Linked List
247256
* [Circular Linked List](data_structures/linked_list/circular_linked_list.py)
248257
* [Deque Doubly](data_structures/linked_list/deque_doubly.py)
@@ -285,12 +294,6 @@
285294
* Trie
286295
* [Radix Tree](data_structures/trie/radix_tree.py)
287296
* [Trie](data_structures/trie/trie.py)
288-
* KD Tree
289-
* [KD Tree Node](data_structures/kd_tree/kd_node.py)
290-
* [Build KD Tree](data_structures/kd_tree/build_kdtree.py)
291-
* [Nearest Neighbour Search](data_structures/kd_tree/nearest_neighbour_search.py)
292-
* [Hypercibe Points](data_structures/kd_tree/example/hypercube_points.py)
293-
* [Example Usage](data_structures/kd_tree/example/example_usage.py)
294297

295298
## Digital Image Processing
296299
* [Change Brightness](digital_image_processing/change_brightness.py)

0 commit comments

Comments
 (0)