Skip to content

Commit 8a9e758

Browse files
committed
Day 16
1 parent 6cd0d28 commit 8a9e758

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ Solutions for [Advent of Code](https://adventofcode.com/) in [Rust](https://www.
2626
| [Day 13](./src/bin/13.rs) | `90.9µs` | `91.8µs` |
2727
| [Day 14](./src/bin/14.rs) | `30.8µs` | `3.5ms` |
2828
| [Day 15](./src/bin/15.rs) | `119.7µs` | `591.0µs` |
29-
| [Day 16](./src/bin/16.rs) | `195.4µs` | `173.6ms` |
29+
| [Day 16](./src/bin/16.rs) | `173.1µs` | `129.8ms` |
3030

31-
**Total: 205.12ms**
31+
**Total: 161.30ms**
3232
<!--- benchmarking table --->
3333

3434
---

src/bin/16.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ use mygrid::{
99
advent_of_code::solution!(16);
1010

1111
pub fn part_one(input: &str) -> Option<u64> {
12-
return None;
13-
1412
let (grid, start) = Grid::new_from_str_capture_start(input, &|c| c, &|c| c == 'S');
1513
let target_pos = grid
1614
.iter_item_and_position()

0 commit comments

Comments
 (0)