libpuri 0.1.1

Idiomatic Rust Competitive Programming Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Idiomatic rust competitive programming library.
mod seg_tree;
pub use seg_tree::*;

mod lazy_seg_tree;
pub use lazy_seg_tree::*;

mod algebra;
pub use algebra::*;

mod util;
pub use util::IntoIndex;