acr-cli 0.2.8

A CLI tool for AtCoder competitive programming in Rust
1
2
3
4
5
6
7
8
9
pub mod tester;

#[derive(Debug)]
pub enum TestResult {
    Ac,
    Wa { actual: String, expected: String },
    Re { stderr: String },
    Tle,
}