Skip to content

Commit 2d671df

Browse files
[pre-commit.ci] pre-commit autoupdate (TheAlgorithms#11874)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/pre-commit/pre-commit-hooks: v4.6.0 → v5.0.0](pre-commit/pre-commit-hooks@v4.6.0...v5.0.0) - [github.com/astral-sh/ruff-pre-commit: v0.6.8 → v0.6.9](astral-sh/ruff-pre-commit@v0.6.8...v0.6.9) * 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 dba8eec commit 2d671df

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Diff for: .pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.6.0
3+
rev: v5.0.0
44
hooks:
55
- id: check-executables-have-shebangs
66
- id: check-toml
@@ -16,7 +16,7 @@ repos:
1616
- id: auto-walrus
1717

1818
- repo: https://github.com/astral-sh/ruff-pre-commit
19-
rev: v0.6.8
19+
rev: v0.6.9
2020
hooks:
2121
- id: ruff
2222
- id: ruff-format

Diff for: DIRECTORY.md

+5
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
* [Rat In Maze](backtracking/rat_in_maze.py)
2323
* [Sudoku](backtracking/sudoku.py)
2424
* [Sum Of Subsets](backtracking/sum_of_subsets.py)
25+
* [Word Break](backtracking/word_break.py)
2526
* [Word Ladder](backtracking/word_ladder.py)
2627
* [Word Search](backtracking/word_search.py)
2728

@@ -99,6 +100,7 @@
99100
* [Elgamal Key Generator](ciphers/elgamal_key_generator.py)
100101
* [Enigma Machine2](ciphers/enigma_machine2.py)
101102
* [Fractionated Morse Cipher](ciphers/fractionated_morse_cipher.py)
103+
* [Gronsfeld Cipher](ciphers/gronsfeld_cipher.py)
102104
* [Hill Cipher](ciphers/hill_cipher.py)
103105
* [Mixed Keyword Cypher](ciphers/mixed_keyword_cypher.py)
104106
* [Mono Alphabetic Ciphers](ciphers/mono_alphabetic_ciphers.py)
@@ -211,6 +213,7 @@
211213
* [Lazy Segment Tree](data_structures/binary_tree/lazy_segment_tree.py)
212214
* [Lowest Common Ancestor](data_structures/binary_tree/lowest_common_ancestor.py)
213215
* [Maximum Fenwick Tree](data_structures/binary_tree/maximum_fenwick_tree.py)
216+
* [Maximum Sum Bst](data_structures/binary_tree/maximum_sum_bst.py)
214217
* [Merge Two Binary Trees](data_structures/binary_tree/merge_two_binary_trees.py)
215218
* [Mirror Binary Tree](data_structures/binary_tree/mirror_binary_tree.py)
216219
* [Non Recursive Segment Tree](data_structures/binary_tree/non_recursive_segment_tree.py)
@@ -284,6 +287,7 @@
284287
* [Dijkstras Two Stack Algorithm](data_structures/stacks/dijkstras_two_stack_algorithm.py)
285288
* [Infix To Postfix Conversion](data_structures/stacks/infix_to_postfix_conversion.py)
286289
* [Infix To Prefix Conversion](data_structures/stacks/infix_to_prefix_conversion.py)
290+
* [Lexicographical Numbers](data_structures/stacks/lexicographical_numbers.py)
287291
* [Next Greater Element](data_structures/stacks/next_greater_element.py)
288292
* [Postfix Evaluation](data_structures/stacks/postfix_evaluation.py)
289293
* [Prefix Evaluation](data_structures/stacks/prefix_evaluation.py)
@@ -1201,6 +1205,7 @@
12011205
* [Binary Tree Traversal](searches/binary_tree_traversal.py)
12021206
* [Double Linear Search](searches/double_linear_search.py)
12031207
* [Double Linear Search Recursion](searches/double_linear_search_recursion.py)
1208+
* [Exponential Search](searches/exponential_search.py)
12041209
* [Fibonacci Search](searches/fibonacci_search.py)
12051210
* [Hill Climbing](searches/hill_climbing.py)
12061211
* [Interpolation Search](searches/interpolation_search.py)

0 commit comments

Comments
 (0)