competitive_programming_rs/
lib.rs

1//! # The Competitive Programming Library in Rust
2//! The Competitive Programming Library in Rust is a set of snippets,
3//! which can be used in programming contests.
4#![allow(clippy::module_inception)]
5#![allow(clippy::suspicious_arithmetic_impl)]
6/// Algorithms related to graph theory.
7pub mod graph;
8
9/// Structures that can efficiently operate data.
10pub mod data_structure;
11
12/// Mathematical algorithms.
13pub mod math;
14
15/// Geometry algorithms.
16pub mod geometry;
17
18/// Utilities for tests, stdin, and so on.
19pub mod utils;
20
21/// String algorithms.
22pub mod string;