-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathd1.py
51 lines (37 loc) · 1.43 KB
/
d1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import logging
from collections.abc import Iterable
_logger = logging.getLogger(__name__)
_STR_DIGITS = ["one", "two", "three", "four", "five", "six", "seven", "eight", "nine"]
def _find_first_and_last_int(input_str: str, *, use_texts: bool) -> tuple[str, str]:
first: str | None = None
last: str | None = None
for ind, c in enumerate(input_str):
val = None
if c.isdigit():
val = c
elif use_texts:
for digit_ind, str_digit in enumerate(_STR_DIGITS):
if input_str.find(str_digit, ind, ind + len(str_digit)) >= 0:
val = str(digit_ind + 1)
break
if val is not None:
if first is None:
first = val
last = val
else:
last = val
assert first is not None
assert last is not None
return first, last
def _int_chars_to_int(s1: str, s2: str) -> int:
return int(s1 + s2)
def _p1_ints(lines: Iterable[str], *, use_texts: bool) -> Iterable[int]:
for line in lines:
_logger.debug("line=%s", line)
value = _int_chars_to_int(*_find_first_and_last_int(line, use_texts=use_texts))
_logger.debug("value=%s", value)
yield value
def p1(input_str: str) -> int:
return sum(_p1_ints(input_str.splitlines(), use_texts=False))
def p2(input_str: str) -> int:
return sum(_p1_ints(input_str.splitlines(), use_texts=True))