mirror of
https://github.com/cupcakearmy/advent-of-code.git
synced 2025-12-13 13:24:58 +00:00
aoc 2025 1+2
This commit is contained in:
22
2025/XX/main.py
Normal file
22
2025/XX/main.py
Normal file
@@ -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