Skip to content

Commit

Permalink
Removed the sorting algorithm to remake it
Browse files Browse the repository at this point in the history
  • Loading branch information
BogdanCiocea committed Dec 29, 2023
1 parent 52975de commit a11b602
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 96 deletions.
2 changes: 0 additions & 2 deletions DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@
* [Two Satisfiability](https://github.com/TheAlgorithms/Rust/blob/master/src/graph/two_satisfiability.rs)
* [Lib](https://github.com/TheAlgorithms/Rust/blob/master/src/lib.rs)
* Machine Learning
* [Cholesky](https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/cholesky.rs)
* [K Means](https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/k_means.rs)
* [Linear Regression](https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/linear_regression.rs)
* Loss Function
Expand Down Expand Up @@ -266,7 +265,6 @@
* [Insertion Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/insertion_sort.rs)
* [Intro Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/intro_sort.rs)
* [Merge Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/merge_sort.rs)
* [Multithreaded Bogo Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/multithreaded_bogo_sort.rs)
* [Odd Even Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/odd_even_sort.rs)
* [Pancake Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/pancake_sort.rs)
* [Patience Sort](https://github.com/TheAlgorithms/Rust/blob/master/src/sorting/patience_sort.rs)
Expand Down
2 changes: 0 additions & 2 deletions src/sorting/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ mod heap_sort;
mod insertion_sort;
mod intro_sort;
mod merge_sort;
mod multithreaded_bogo_sort;
mod odd_even_sort;
mod pancake_sort;
mod patience_sort;
Expand Down Expand Up @@ -53,7 +52,6 @@ pub use self::insertion_sort::insertion_sort;
pub use self::intro_sort::intro_sort;
pub use self::merge_sort::bottom_up_merge_sort;
pub use self::merge_sort::top_down_merge_sort;
pub use self::multithreaded_bogo_sort::multithreaded_bogo_sort;
pub use self::odd_even_sort::odd_even_sort;
pub use self::pancake_sort::pancake_sort;
pub use self::patience_sort::patience_sort;
Expand Down
92 changes: 0 additions & 92 deletions src/sorting/multithreaded_bogo_sort.rs

This file was deleted.

0 comments on commit a11b602

Please sign in to comment.