From 84d33a8b26057206be849a7a286d4352157435c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Engl=C3=B6f=20Ytterstr=C3=B6m?= Date: Wed, 25 Oct 2023 23:25:55 +0200 Subject: [PATCH] Remove not started 2015:6 --- 2015-python/solutions/day_06.py | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 2015-python/solutions/day_06.py diff --git a/2015-python/solutions/day_06.py b/2015-python/solutions/day_06.py deleted file mode 100644 index f5ccd53..0000000 --- a/2015-python/solutions/day_06.py +++ /dev/null @@ -1,22 +0,0 @@ -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()