AdventOfCode/solution.py

25 lines
561 B
Python
Raw Normal View History

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