dsalgo 0.3.10

A package for Datastructures and Algorithms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! mainly used in competitive programming
//! template main function.
#![allow(unused_imports)]

pub use crate::{
    io_locked_stdin_reader::*,
    io_locked_stdout_buffered_writer::*,
};

// fn main() -> Result<(), Box<dyn std::error::Error>> {
//     use std::io::Write;
//     let mut reader = locked_stdin_reader();
//     let mut writer = locked_stdout_buf_writer();
//     writer.flush()?;
//     Ok(())
// }