From 0cf34e79173da0a299932b75f34b4b54ef1b6b65 Mon Sep 17 00:00:00 2001 From: Donald Date: Fri, 1 Dec 2023 08:16:01 +0000 Subject: [PATCH] added comments about the state of progress. --- day01.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/day01.py b/day01.py index 3125be3..446d487 100644 --- a/day01.py +++ b/day01.py @@ -2,6 +2,7 @@ def part01(day01_input_lines: list) -> None: + # working regex = re.compile(r'\D') total_sum = 0 for line in day01_input_lines: @@ -12,6 +13,7 @@ def part01(day01_input_lines: list) -> None: def part02(day01_input_lines): + # not yet working regex = re.compile(r'\D') number_replacement_re = [(re.compile(r'nine'), '9'), (re.compile(r'eight'), '8'),