rustgym 0.2.0

rustgym solutions
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod _30_hello_world;

use std::io::*;

fn solve(_: &mut dyn BufRead) -> Result<String> {
    Ok("".to_string())
}

fn main() {
    print!("{}", solve(&mut BufReader::new(stdin())).unwrap());
}