Skip to content

Commit

Permalink
added comments about the state of progress.
Browse files Browse the repository at this point in the history
  • Loading branch information
Donald-rdex committed Dec 1, 2023
1 parent 5bf95a3 commit 0cf34e7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions day01.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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'),
Expand Down

0 comments on commit 0cf34e7

Please sign in to comment.