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.
advent-of-code/rust/src/main.rs

26 lines
572 B

use std::fs::File;
use std::io::prelude::*;
use std::io;
use std::path::PathBuf;
extern crate advent_of_code;
use advent_of_code::*;
fn read_input(filename: &str) -> Result<String, io::Error> {
let mut path = PathBuf::from(".");
path.push("input");
path.push(filename);
path.set_extension("txt");
let mut f = try!(File::open(path));
let mut s = String::new();
try!(f.read_to_string(&mut s));
Ok(s)
}
fn main() {
9 years ago
let input = read_input("day_05").unwrap();
let day = Day05::new(input);
println!("{}", day.solve().unwrap());
}