Skip to content

Commit 2ffcc9f

Browse files
algobytewisegithub-actions
and
github-actions
authored
Move: traversals/binary_tree_traversals.py --> searches/binary_tree_traversal.py (TheAlgorithms#4295)
* Rename traversals/binary_tree_traversals.py to searches/binary_tree_traversal.py * updating DIRECTORY.md * Delete traversals directory * Update build.yml Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
1 parent 52613d1 commit 2ffcc9f

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

Diff for: .github/workflows/build.yml

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ jobs:
4444
quantum
4545
scheduling
4646
sorts
47-
traversals
4847
- name: Run tests
4948
run: pytest --doctest-modules --ignore=project_euler/ --ignore=scripts/ --cov-report=term-missing:skip-covered --cov=. .
5049
- if: ${{ success() }}

Diff for: DIRECTORY.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -817,6 +817,7 @@
817817

818818
## Searches
819819
* [Binary Search](https://github.com/TheAlgorithms/Python/blob/master/searches/binary_search.py)
820+
* [Binary Tree Traversal](https://github.com/TheAlgorithms/Python/blob/master/searches/binary_tree_traversal.py)
820821
* [Double Linear Search](https://github.com/TheAlgorithms/Python/blob/master/searches/double_linear_search.py)
821822
* [Double Linear Search Recursion](https://github.com/TheAlgorithms/Python/blob/master/searches/double_linear_search_recursion.py)
822823
* [Fibonacci Search](https://github.com/TheAlgorithms/Python/blob/master/searches/fibonacci_search.py)
@@ -909,9 +910,6 @@
909910
* [Word Patterns](https://github.com/TheAlgorithms/Python/blob/master/strings/word_patterns.py)
910911
* [Z Function](https://github.com/TheAlgorithms/Python/blob/master/strings/z_function.py)
911912

912-
## Traversals
913-
* [Binary Tree Traversals](https://github.com/TheAlgorithms/Python/blob/master/traversals/binary_tree_traversals.py)
914-
915913
## Web Programming
916914
* [Co2 Emission](https://github.com/TheAlgorithms/Python/blob/master/web_programming/co2_emission.py)
917915
* [Covid Stats Via Xpath](https://github.com/TheAlgorithms/Python/blob/master/web_programming/covid_stats_via_xpath.py)
File renamed without changes.

Diff for: traversals/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)