Part 1
Day 3: Gear Ratios¶
You and the Elf eventually reach a 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.
It doesn't take long to find the gondolas, but there seems to be a problem: they're not moving.
"Aaah!"
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.
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.
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.)
Here is an example engine schematic:
467..114..
...*......
..35..633.
......#...
617*......
.....+.58.
..592.....
......755.
...$.*....
.664.598..
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.
Of course, the actual engine schematic is much larger. What is the sum of all of the part numbers in the engine schematic?
Number
dataclass
¶
Dataclass for containing a number and it's position
Source code in aoc/day3/part1.py
40 41 42 43 44 45 46 47 48 49 50 |
|
__hash__ ¶
__hash__() -> int
The hash of a Number is its position. Used for making it possible to use as a key in a dictionary
Source code in aoc/day3/part1.py
48 49 50 |
|
Part
dataclass
¶
Dataclass for storing the position of a engine number
Source code in aoc/day3/part1.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
|
valid_coodinates ¶
valid_coodinates() -> Iterable[tuple[int, int]]
Get an iterable of valid positions for engine numbers
Returns:
Type | Description |
---|---|
Iterable[tuple[int, int]]
|
A generator of position tuples for valid engine numbers |
Source code in aoc/day3/part1.py
60 61 62 63 64 65 66 67 68 |
|
sum_part_numbers ¶
sum_part_numbers(input_text: str) -> int
Get the sum of all the valid engine numbers that are adjacent or diagonal to a engine part. Traverse the grid to accumulate engine numbers and parts and making a lookup from coordinates to engine numbers. For each part search the lookup for using it's position for valid engine numbers and at them to the set. Return the sum. Args: input_text: Raw input string
Returns:
Type | Description |
---|---|
int
|
sum of all valid engine numbers |
Source code in aoc/day3/part1.py
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
|