File tree 2 files changed +10
-11
lines changed
2 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 6
6
- id : check-yaml
7
7
- id : end-of-file-fixer
8
8
types : [python]
9
- # Some doctests use print(x, sep=" ") and black will not fix inside triple quotes
10
- # It is too confusing for new contributors to understand this and how to fix
11
- # - id: trailing-whitespace
12
- # exclude: |
13
- # (?x)^(
14
- # data_structures/heap/binomial_heap.py
15
- # )$
9
+ - id : trailing-whitespace
10
+ exclude : |
11
+ (?x)^(
12
+ data_structures/heap/binomial_heap.py
13
+ )$
16
14
- id : requirements-txt-fixer
17
15
- repo : https://github.com/psf/black
18
16
rev : stable
19
17
hooks :
20
18
- id : black
21
- exclude : |
22
- (?x)^(
23
- data_structures/binary_tree/binary_tree_traversals.py
24
- )$
25
19
- repo : https://github.com/PyCQA/isort
26
20
rev : 5.5.3
27
21
hooks :
Original file line number Diff line number Diff line change 107
107
* [ Binary Search Tree] ( https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/binary_search_tree.py )
108
108
* [ Binary Search Tree Recursive] ( https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/binary_search_tree_recursive.py )
109
109
* [ Binary Tree Mirror] ( https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/binary_tree_mirror.py )
110
+ * [ Binary Tree Traversals] ( https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/binary_tree_traversals.py )
110
111
* [ Fenwick Tree] ( https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/fenwick_tree.py )
111
112
* [ Lazy Segment Tree] ( https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/lazy_segment_tree.py )
112
113
* [ Lowest Common Ancestor] ( https://github.com/TheAlgorithms/Python/blob/master/data_structures/binary_tree/lowest_common_ancestor.py )
675
676
* [ Sol1] ( https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_099/sol1.py )
676
677
* Problem 112
677
678
* [ Sol1] ( https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_112/sol1.py )
679
+ * Problem 113
680
+ * [ Sol1] ( https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_113/sol1.py )
678
681
* Problem 119
679
682
* [ Sol1] ( https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_119/sol1.py )
680
683
* Problem 120
681
684
* [ Sol1] ( https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_120/sol1.py )
682
685
* Problem 125
683
686
* [ Sol1] ( https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_125/sol1.py )
687
+ * Problem 173
688
+ * [ Sol1] ( https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_173/sol1.py )
684
689
* Problem 191
685
690
* [ Sol1] ( https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_191/sol1.py )
686
691
* Problem 234
You can’t perform that action at this time.
0 commit comments