contest_algorithms/
lib.rs

1//! Algorithms Cookbook in Rust.
2pub mod caching;
3pub mod graph;
4pub mod math;
5pub mod order;
6pub mod range_query;
7pub mod scanner;
8pub mod string_proc;