advent-of-code/2015-python/solutions/day_06.py
Anders Ytterström 5ed6e5e8ce Solve day 5-6 2015
2022-11-25 12:03:57 +01:00

22 lines
419 B
Python

from solutions import BaseSolution
class Solution(BaseSolution):
input_file = "06.txt"
def __str__(self):
return "Day 6: Probably a Fire Hazard"
def parse_input(self, data):
return data
def solve(self, puzzle_input):
return True
def solve_again(self, puzzle_input):
return True
if __name__ == "__main__":
solution = Solution()
solution.show_results()