AdventOfCode/solution.py

25 lines
552 B
Python
Raw Normal View History

2024-11-02 18:13:20 +01:00
#!/bin/python3
import sys
from pprint import pprint
2024-11-15 17:13:32 +01:00
input_f = sys.argv[1]
2024-11-02 18:13:20 +01:00
#########################################
# #
# Part 1 #
# #
#########################################
2024-11-15 17:13:32 +01:00
with open(input_f) as file:
for line in file:
2024-11-02 18:13:20 +01:00
#########################################
# #
# Part 2 #
# #
#########################################