diff --git a/y_2015/day6.py b/y_2015/day6.py index 02573d0..0dddc60 100644 --- a/y_2015/day6.py +++ b/y_2015/day6.py @@ -39,10 +39,6 @@ class Light: def hash_fun(x: int, y: int): return f"x={x};y={y}" - @property - def hash(self) -> str: - return Light.hash_fun(self.x, self.y) - class Day(AoCDay): def __init__(self, test=0):