This commit is contained in:
2022-12-02 07:46:29 -05:00
parent f23deb97e9
commit e534f10134
3 changed files with 72 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ fn main() {
println!(
"p1: {}ms, p2: {}ms",
part_one_duration.as_millis(),
part_two_duration.as_millis()
(part_two_duration - part_one_duration).as_millis()
);
}