gcj-helper
is a Rust library for writing Google Code Jam solutions. It handles the
boilerplate so you can focus on writing solutions instead.
```rust extern crate gcj_helper;
use gcj_helper::TestEngine; use std::io::Write;
fn main() { TestEngine::new("./foo.in", "./foo.out").run(|iohelper| { let line = iohelper.readline(); writeln!(iohelper, " {}", line).unwrap(); }); } ```
cargo new --template
For brand-new crates, the quickest way to get started is to use the following command:
text
cargo new --template https://github.com/FaultyRAM/gcj-template-rust.git foobar
This creates a new binary crate named foobar
that is set up to use gcj-helper
. No additional
work is needed; just open src/main.rs
and start writing your solution.
You can also manually add gcj-helper
to your crate, though doing so is slower than using
cargo new --template
. To do this, add the following line to your [dependencies]
in Cargo.toml
:
toml
gcj-helper = "0.1"
And add the following line to your crate root:
rust
extern crate gcj_helper;
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.