AdventOfCode/solution.py

28 lines
596 B
Python
Raw Normal View History

2024-11-02 18:13:20 +01:00
#!/bin/python3
2024-11-22 18:03:02 +01:00
import sys,re
2024-11-02 18:13:20 +01:00
from pprint import pprint
2024-11-22 18:03:02 +01:00
input_f = 'test'
2024-11-02 18:13:20 +01:00
2024-11-22 18:03:02 +01:00
part = 1
2024-11-02 18:13:20 +01:00
#########################################
# #
# Part 1 #
# #
#########################################
2024-11-22 18:03:02 +01:00
if 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 #
# #
#########################################
2024-11-22 18:03:02 +01:00
if part == 2:
exit()