advent-of-code/2018-python/solutions/day_14.py

20 lines
364 B
Python
Raw Normal View History

2021-11-01 16:40:46 +01:00
from solutions import BaseSolution
class Solution(BaseSolution):
input_file = '14.in'
def __str__(self):
return 'Day 14: Chocolate Charts'
def solve(self, puzzle_input):
pass
def solve_again(self, puzzle_input):
pass
if __name__ == '__main__':
solution = Solution()
solution.show_results()