From 77a12c029ecf66d0b1f8293b8a96b37932be86b3 Mon Sep 17 00:00:00 2001 From: Stegallo Date: Sun, 1 Dec 2024 20:52:50 -0800 Subject: [PATCH] Update day6.py --- y_2023/day6.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/y_2023/day6.py b/y_2023/day6.py index ba5ce8b..0a2d7f5 100644 --- a/y_2023/day6.py +++ b/y_2023/day6.py @@ -21,10 +21,12 @@ def size(self): return len(self.sequence) -class Time(Placeholder): ... +class Time(Placeholder): + ... -class Distance(Placeholder): ... +class Distance(Placeholder): + ... class Day(AoCDay):