added template for AOC.
This commit is contained in:
commit
ea7220bb00
7 changed files with 95 additions and 0 deletions
0
src/template/input.txt
Normal file
0
src/template/input.txt
Normal file
13
src/template/part1.rs
Normal file
13
src/template/part1.rs
Normal file
|
@ -0,0 +1,13 @@
|
|||
pub fn part1() -> usize {
|
||||
return 0;
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod day01 {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn test_part1() {
|
||||
assert_eq!(part1(), 0);
|
||||
}
|
||||
}
|
13
src/template/part2.rs
Normal file
13
src/template/part2.rs
Normal file
|
@ -0,0 +1,13 @@
|
|||
pub fn part2() -> usize {
|
||||
return 0;
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod day01 {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn test_part2() {
|
||||
assert_eq!(part2(), 0);
|
||||
}
|
||||
}
|
12
src/template/solve.rs
Normal file
12
src/template/solve.rs
Normal file
|
@ -0,0 +1,12 @@
|
|||
mod part1;
|
||||
mod part2;
|
||||
|
||||
fn main() {
|
||||
let _input = include_str!("./input.txt");
|
||||
|
||||
println!("Part One");
|
||||
println!("Result: {}", part1::part1());
|
||||
|
||||
println!("Part Two");
|
||||
println!("Result: {}", part2::part2());
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue