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

13 lines
265 B

use std::io::prelude::*;
use std::io;
extern crate advent_of_code;
use advent_of_code::*;
fn main() {
let mut input = String::new();
io::stdin().read_to_string(&mut input).ok();
9 years ago
let day = Day06::new(input);
println!("{}", day.solve().unwrap());
}