mirror of
https://github.com/cupcakearmy/advent-of-code.git
synced 2026-05-21 16:35:23 +00:00
aoc 2025 1+2
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
# Day 02
|
||||
|
||||
## Part 1
|
||||
|
||||
## Part 2
|
||||
@@ -0,0 +1,22 @@
|
||||
def calc_1(input):
|
||||
pass
|
||||
|
||||
|
||||
def calc_2(input):
|
||||
pass
|
||||
|
||||
|
||||
def parse(raw: str):
|
||||
return raw
|
||||
|
||||
|
||||
# Run
|
||||
with open("./2025/XX/train.txt") as f:
|
||||
d = parse(f)
|
||||
print(f"Train 1: {calc_1(d)}")
|
||||
print(f"Train 2: {calc_2(d)}")
|
||||
|
||||
with open("./2025/XX/data.txt") as f:
|
||||
d = parse(f)
|
||||
print(f"Actual 1: {calc_1(d)}")
|
||||
print(f"Actual 2: {calc_2(d)}")
|
||||
Reference in New Issue
Block a user