completed day 3, ready for day 4.
This commit is contained in:
parent
d8c125572f
commit
4a9c8b37b9
15 changed files with 2778 additions and 2 deletions
|
@ -1,3 +1,5 @@
|
|||
use crate::utilities::*;
|
||||
|
||||
pub fn part1() -> usize {
|
||||
0
|
||||
}
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
use crate::utilities::*;
|
||||
|
||||
pub fn part2() -> usize {
|
||||
0
|
||||
}
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
mod part1;
|
||||
mod part2;
|
||||
mod parse;
|
||||
mod utilities;
|
||||
|
||||
fn main() {
|
||||
let _input = include_str!("./input.txt");
|
||||
let _structured_input = parse::parse(_input);
|
||||
let _structured_input = utilities::parse(_input);
|
||||
|
||||
println!("Part One");
|
||||
println!("Result: {}", part1::part1());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue