//! # Rustによる競技プログラミング用ライブラリ
#![allow(non_snake_case)]
#![allow(dead_code)]
pub mod algebraic_structure;
pub mod convolution;
pub mod data_structure;
pub mod geometry;
pub mod graph;
pub mod linear_algrebra;
pub mod number_theory;
pub mod string;
pub mod utils;
// macro
mod cfor;
mod chmax;
mod chmin;
mod debug;
mod debug2D;
mod get;
mod in_ex;