···11+\--- Day 3: Gear Ratios ---
22+----------
33+44+You and the Elf eventually reach a [gondola lift](https://en.wikipedia.org/wiki/Gondola_lift) station; he says the gondola lift will take you up to the *water source*, but this is as far as he can bring you. You go inside.
55+66+It doesn't take long to find the gondolas, but there seems to be a problem: they're not moving.
77+88+"Aaah!"
99+1010+You turn around to see a slightly-greasy Elf with a wrench and a look of surprise. "Sorry, I wasn't expecting anyone! The gondola lift isn't working right now; it'll still be a while before I can fix it." You offer to help.
1111+1212+The engineer explains that an engine part seems to be missing from the engine, but nobody can figure out which one. If you can *add up all the part numbers* in the engine schematic, it should be easy to work out which part is missing.
1313+1414+The engine schematic (your puzzle input) consists of a visual representation of the engine. There are lots of numbers and symbols you don't really understand, but apparently *any number adjacent to a symbol*, even diagonally, is a "part number" and should be included in your sum. (Periods (`.`) do not count as a symbol.)
1515+1616+Here is an example engine schematic:
1717+1818+```
1919+467..114..
2020+...*......
2121+..35..633.
2222+......#...
2323+617*......
2424+.....+.58.
2525+..592.....
2626+......755.
2727+...$.*....
2828+.664.598..
2929+3030+```
3131+3232+In this schematic, two numbers are *not* part numbers because they are not adjacent to a symbol: `114` (top right) and `58` (middle right). Every other number is adjacent to a symbol and so *is* a part number; their sum is `*4361*`.
3333+3434+Of course, the actual engine schematic is much larger. *What is the sum of all of the part numbers in the engine schematic?*
3535+3636+To begin, [get your puzzle input](3/input).
3737+3838+Answer:
3939+4040+You can also [Shareon [Twitter](https://twitter.com/intent/tweet?text=%22Gear+Ratios%22+%2D+Day+3+%2D+Advent+of+Code+2023&url=https%3A%2F%2Fadventofcode%2Ecom%2F2023%2Fday%2F3&related=ericwastl&hashtags=AdventOfCode) [Mastodon](javascript:void(0);)] this puzzle.