Watch
1
0
Fork
You've already forked advent-of-code
0

Formatting

This commit is contained in:
Jeremy Kaplan 2018-12-03 20:52:46 -08:00
commit 84b67b5140
2 changed files with 6 additions and 5 deletions

View file

@ -1,5 +1,5 @@
use std::collections::{HashMap, HashSet}; use std::collections::{HashMap, HashSet};
use std::iter::{Iterator, Zip}; use std::iter::Iterator;
use std::str; use std::str;
const INPUT: &str = include_str!("input/day2.txt"); const INPUT: &str = include_str!("input/day2.txt");

View file

@ -1,9 +1,10 @@
mod day1; mod day1;
mod day2; mod day2;
mod day3;
fn main() { fn main() {
println!("{}", day1::part1()); println!("Day 1 part 1: {}", day1::part1());
println!("{}", day1::part2()); println!("Day 1 part 2: {}", day1::part2());
println!("{}", day2::part1()); println!("Day 2 part 1: {}", day2::part1());
println!("{}", day2::part2()); println!("Day 2 part 2: {}", day2::part2());
} }