Fix readme typos

This commit is contained in:
Stefan Müller 2025-02-14 11:24:58 +01:00
parent d8ae103928
commit ba3d151e96
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ The input string is processed simultaneously from both ends to calculate the che
:mag_right: Puzzle: <https://adventofcode.com/2024/day/10>, :white_check_mark: Solver: [`HoofIt.cpp`](src/HoofIt.cpp)
The algorithm starts at the trail ends (the `9`'s) and searches all options from there downwards until trailheads are reached. For each visited map location, it tracks unique reachable end points (for part 1) and number of possible paths to end points (for part 2). These values are accumulated, if during the search the same map location is encountered again.
The algorithm starts at the trail ends (the `9`'s) and searches all options from there downwards until trail heads are reached. For each visited map location, it tracks unique reachable end points (for part 1) and number of possible paths to end points (for part 2). These values are accumulated, if during the search the same map location is encountered again.
### Day 11: Plutonian Pebbles