Skip to main content

algorithmz/
lib.rs

1//! # algorithmz
2//!
3//! `algorithmz` is the rust based implementation of the corresponding python module.
4//! The module can be found on [github](https://github.com/keon/algorithms) and [pypi](https://pypi.org/project/algorithms/).
5#![deny(missing_docs)]
6
7
8pub mod sorting;
9pub mod set;
10pub mod array;