From ba3d151e96e17f33a39ec9e2525f5c4ad976e082 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20M=C3=BCller?= Date: Fri, 14 Feb 2025 11:24:58 +0100 Subject: [PATCH] Fix readme typos --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0d79ded..aa28fdf 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ The input string is processed simultaneously from both ends to calculate the che :mag_right: Puzzle: , :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