competitive-programming-rs 41.0.0

Competitive Programming Library in Rust
Documentation
//! # The Competitive Programming Library in Rust
//! The Competitive Programming Library in Rust is a set of snippets,
//! which can be used in programming contests.
#![allow(clippy::module_inception)]
#![allow(clippy::suspicious_arithmetic_impl)]
/// Algorithms related to graph theory.
pub mod graph;

/// Structures that can efficiently operate data.
pub mod data_structure;

/// Mathematical algorithms.
pub mod math;

/// Geometry algorithms.
pub mod geometry;

/// Utilities for tests, stdin, and so on.
pub mod utils;

/// String algorithms.
pub mod string;