20 lines
364 B
Python
20 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()
|