Skip to content

Commit 8e77052

Browse files
committed
rust/2016: remove all traces of year 2016
Since I have now solved year 2016 in Java, there is no need to have any solution code here.
1 parent a0c7246 commit 8e77052

File tree

4 files changed

+0
-65
lines changed

4 files changed

+0
-65
lines changed

rust/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
use std::io;
22

33
pub mod base;
4-
pub mod year2016;
54
pub mod year2017;
65
pub mod year2018;
76

rust/src/main.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ fn imain() -> i32 {
5959
};
6060
// Choose solution function based on arguments.
6161
let solution: Result<aoc::Solution, String> = match (year, day, part) {
62-
// Year 2016.
63-
(2016, 1, 1) => Ok(aoc::year2016::day01::part1),
6462
// Year 2017.
6563
(2017, 1, 1) => Ok(aoc::year2017::day01::part1),
6664
(2017, 1, 2) => Ok(aoc::year2017::day01::part2),

rust/src/year2016/day01.rs

Lines changed: 0 additions & 61 deletions
This file was deleted.

rust/src/year2016/mod.rs

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)