advent-of-code/2018-python/solutions/day_14.py
2021-11-01 16:45:03 +01:00

19 lines
364 B
Python

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()