Skip to content

Instantly share code, notes, and snippets.

@bulletmark
Last active December 6, 2023 22:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bulletmark/74fd51f8023e1dcb77cc5c1d2c404663 to your computer and use it in GitHub Desktop.
Save bulletmark/74fd51f8023e1dcb77cc5c1d2c404663 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
import math
from dataclasses import dataclass
import fileinput
@dataclass
class NUMBER:
value: int
length: int
coords: tuple[int, int]
def is_adjacent(self, coords) -> bool:
y, sx = self.coords
for x in range(sx, sx + self.length):
if (y, x + 1) in coords or \
(y, x - 1) in coords or \
(y + 1, x) in coords or \
(y + 1, x + 1) in coords or \
(y + 1, x - 1) in coords or \
(y - 1, x) in coords or \
(y - 1, x + 1) in coords or \
(y - 1, x - 1) in coords:
return True
return False
symbols = {}
numbers = []
number = []
def addnum(y: int, x: int) -> None:
if number:
ln = len(number)
numbers.append(NUMBER(int(''.join(number)), ln, (y, x - ln)))
number.clear()
for y, line in enumerate(fileinput.input()):
line = line.strip()
for x, c in enumerate(line):
if c == '.':
addnum(y, x)
elif c.isdigit():
number.append(c)
else:
addnum(y, x)
symbols[(y, x)] = c
addnum(y, len(line))
print('P1 =', sum(n.value for n in numbers if n.is_adjacent(symbols)))
tot = 0
for coords, symbol in symbols.items():
if symbol == '*':
nums = [n.value for n in numbers if n.is_adjacent([coords])]
if len(nums) == 2:
tot += math.prod(nums)
print('P2 =', tot)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment