summaryrefslogtreecommitdiffstats
path: root/src/bin
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2022-12-12 03:02:01 -0500
committerJesse Luehrs <doy@tozt.net>2022-12-12 03:55:46 -0500
commit67c4936e35f1c3cf3e3cbf04302dc23ff4f764ec (patch)
treee640193f6c86abc7ff5e21955a12d8853acd00fa /src/bin
parent229f1057468e6f7508ef36e804bc55af224b9fab (diff)
downloadadvent-of-code-67c4936e35f1c3cf3e3cbf04302dc23ff4f764ec.tar.gz
advent-of-code-67c4936e35f1c3cf3e3cbf04302dc23ff4f764ec.zip
benchmarking
Diffstat (limited to 'src/bin')
-rw-r--r--src/bin/2021/day25.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/2021/day25.rs b/src/bin/2021/day25.rs
index 68d866e..4bd5c92 100644
--- a/src/bin/2021/day25.rs
+++ b/src/bin/2021/day25.rs
@@ -84,7 +84,7 @@ pub fn part1(map: Map) -> Result<u64> {
}
pub fn part2(_: Map) -> Result<i64> {
- todo!()
+ Ok(0)
}
#[test]