Watch
1
0
Fork
You've already forked advent-of-code
0

2017 Day 11 Part 1

This commit is contained in:
Jeremy Kaplan 2025-08-12 20:25:34 -04:00
commit 85f3aa600d
4 changed files with 70 additions and 0 deletions

10
2017/aoc.py Normal file
View file

@ -0,0 +1,10 @@
import os
def input_path(day: int) -> str:
return os.path.join(os.path.dirname(__file__), "input", f"day{day:>02}")
def puzzle_input(day: int) -> str:
with open(input_path(day)) as f:
return f.read().strip()