crate_creation_to_export_and_beyond/n_or_smaller/
mod.rs

1//! The following contains some of the fastest sorting algorithms which the offers O (n) time complexity;
2//! however, they are not the most practical solutions because they usually required more memory to run,
3//! or they have limited type of data can be sorted. 
4pub mod counting_sort;
5pub mod radix_sort;
6
7pub use counting_sort::counting_sort;
8pub use radix_sort::radix_sort;