algorithmz 1.2.8

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