You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
374 B
25 lines
374 B
extern crate failure;
|
|
|
|
use std::io::{self, Read};
|
|
|
|
use failure::Error;
|
|
|
|
mod day_01;
|
|
mod day_02;
|
|
|
|
fn main() {
|
|
if let Err(e) = run() {
|
|
eprintln!("{}", e);
|
|
}
|
|
}
|
|
|
|
fn run() -> Result<(), Error> {
|
|
let mut input = String::new();
|
|
io::stdin().read_to_string(&mut input)?;
|
|
|
|
let solution = day_02::solve(&input)?;
|
|
println!("{}", solution);
|
|
|
|
Ok(())
|
|
}
|