hpdg 0.1.0

Rust-first data generator for competitive programming and OI workflows.
Documentation
1
2
3
4
5
6
7
//! Backward-compatible testcase alias.
//!
//! Older examples may refer to `Testcase` following the naming style used by some OI
//! generators. In `hpdg`, the canonical type is [`crate::io::IO`].

/// Alias for [`crate::io::IO`].
pub use crate::io::IO as Testcase;