Skip to content

Commit b5afe33

Browse files
Merge pull request #197 from nikobockerman/changes
Small improvements
2 parents 082b6cd + 52a36e2 commit b5afe33

File tree

11 files changed

+52
-41
lines changed

11 files changed

+52
-41
lines changed

adventofcode/y2023/d1.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import logging
22
from collections.abc import Iterable
33

4+
_logger = logging.getLogger(__name__)
5+
46
_STR_DIGITS = ["one", "two", "three", "four", "five", "six", "seven", "eight", "nine"]
57

68

@@ -35,9 +37,9 @@ def _int_chars_to_int(s1: str, s2: str) -> int:
3537

3638
def _p1_ints(lines: Iterable[str], *, use_texts: bool) -> Iterable[int]:
3739
for line in lines:
38-
logging.debug("line=%s", line)
40+
_logger.debug("line=%s", line)
3941
value = _int_chars_to_int(*_find_first_and_last_int(line, use_texts=use_texts))
40-
logging.debug("value=%s", value)
42+
_logger.debug("value=%s", value)
4143
yield value
4244

4345

adventofcode/y2023/d12.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
from attrs import frozen
77

8+
_logger = logging.getLogger(__name__)
9+
810

911
@frozen
1012
class _Data:
@@ -192,12 +194,12 @@ def _calculate_alternatives(
192194
classifier = _Classifier(data, prev_state)
193195
if classifier.completion() is True:
194196
result = 1
195-
logging.debug("CA %02d: %s -> Impossible -> %d", recursion_depth, data, result)
197+
_logger.debug("CA %02d: %s -> Impossible -> %d", recursion_depth, data, result)
196198
return result
197199

198200
if classifier.completion() is False:
199201
result = 0
200-
logging.debug("CA %02d: %s -> Impossible -> %d", recursion_depth, data, result)
202+
_logger.debug("CA %02d: %s -> Impossible -> %d", recursion_depth, data, result)
201203
return result
202204

203205
first_unknown_index = classifier.first_unknown_index()
@@ -241,14 +243,14 @@ def _calculate_alternatives(
241243
result_cache[cache_key] = alternative_result
242244
result += alternative_result
243245

244-
logging.debug("CA %02d: %s -> Guessed -> %d", recursion_depth, data, result)
246+
_logger.debug("CA %02d: %s -> Guessed -> %d", recursion_depth, data, result)
245247
return result
246248

247249

248250
def p1(input_str: str) -> int:
249251
def p1_calc(ind: int, input_data: _Data) -> int:
250252
res = _calculate_alternatives(input_data)
251-
logging.info("%d: %s -> %s", ind, input_data, res)
253+
_logger.info("%d: %s -> %s", ind, input_data, res)
252254
return res
253255

254256
return sum(
@@ -266,7 +268,7 @@ def input_line_data_mapper(input_line_data: _Data) -> _Data:
266268

267269
def p2_calc(ind: int, input_data: _Data) -> int:
268270
res = _calculate_alternatives(input_data)
269-
logging.info("%d: %s -> %s", ind, input_data, res)
271+
_logger.info("%d: %s -> %s", ind, input_data, res)
270272
return res
271273

272274
return sum(

adventofcode/y2023/d13.py

+11-9
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
from adventofcode.tooling.coordinates import X, Y
66
from adventofcode.tooling.map import IterDirection, Map2d
77

8+
_logger = logging.getLogger(__name__)
9+
810

911
def _parse_maps(input_str: str) -> Iterable[Map2d]:
1012
lines: list[list[str]] = []
@@ -93,7 +95,7 @@ def _check_if_datas_around_reflection_match(
9395
allowed_mismatches,
9496
)
9597
if match_res is None:
96-
logging.debug("Invalid mirror data at %d and %d", i1, i2)
98+
_logger.debug("Invalid mirror data at %d and %d", i1, i2)
9799
return None
98100

99101
assert match_res >= 0
@@ -107,7 +109,7 @@ def _check_if_datas_around_reflection_match(
107109
def _find_reflection_line(
108110
map_: Map2d, direction: IterDirection, required_mismatches: int = 0
109111
) -> int | None:
110-
logging.debug(
112+
_logger.debug(
111113
"Searching for reflection with %d required mismatches", required_mismatches
112114
)
113115
search_start_pos = 0
@@ -117,7 +119,7 @@ def _find_reflection_line(
117119
map_, search_start_pos, direction, remaining_mismatches
118120
)
119121
if found_data_info is None:
120-
logging.debug(
122+
_logger.debug(
121123
"No consecutive datas found with %d allowed mismatches",
122124
remaining_mismatches,
123125
)
@@ -127,7 +129,7 @@ def _find_reflection_line(
127129
search_start_pos = first_pos + 1
128130
remaining_mismatches -= mismatches
129131

130-
logging.debug(
132+
_logger.debug(
131133
"Found reflection at %d with %d mismatches remaining",
132134
first_pos,
133135
remaining_mismatches,
@@ -137,7 +139,7 @@ def _find_reflection_line(
137139
map_, first_pos, direction, remaining_mismatches
138140
)
139141
if check_res is None:
140-
logging.debug(
142+
_logger.debug(
141143
"Datas around reflection don't match with %d allowed mismatches",
142144
remaining_mismatches,
143145
)
@@ -146,16 +148,16 @@ def _find_reflection_line(
146148
remaining_mismatches -= check_res
147149
assert remaining_mismatches >= 0
148150
if remaining_mismatches > 0:
149-
logging.debug("Not enough mismatches")
151+
_logger.debug("Not enough mismatches")
150152
continue
151-
logging.debug("Found perfect reflection at %d", first_pos)
153+
_logger.debug("Found perfect reflection at %d", first_pos)
152154
return first_pos
153155

154156

155157
def _resolve(input_str: str, required_mismatches_per_map: int) -> int:
156158
result: int = 0
157159
for map_counter, map_ in enumerate(_parse_maps(input_str), 1):
158-
logging.info(
160+
_logger.info(
159161
"Map %2d: Size (LxC) %2d x %2d\n%s",
160162
map_counter,
161163
map_.height,
@@ -178,7 +180,7 @@ def _resolve(input_str: str, required_mismatches_per_map: int) -> int:
178180

179181
map_result = (match_index + 1) * match_multiplier
180182
result += map_result
181-
logging.info(
183+
_logger.info(
182184
"Map %2d: %s: %2d, map_result: %5d, result so far: %d",
183185
map_counter,
184186
line_or_column,

adventofcode/y2023/d16.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -140,17 +140,17 @@ def p2(input_str: str) -> int:
140140
for y1 in (map_.tl_y, map_.br_y):
141141
coord = Coord2d(y1, X(x1))
142142
dir_ = Dir.S if y1 == 0 else Dir.N
143-
logging.info("Trying %s -> %s", coord, dir_)
143+
_logger.info("Trying %s -> %s", coord, dir_)
144144
result = _try_one_enter(coord, dir_, map_, exit_cache)
145-
logging.info("Result %s -> %s = %d", coord, dir_, result)
145+
_logger.info("Result %s -> %s = %d", coord, dir_, result)
146146
results.append((coord, dir_, result))
147147
for y2 in range(map_.tl_y, map_.br_y + 1):
148148
for x2 in (map_.tl_x, map_.br_x):
149149
coord = Coord2d(Y(y2), x2)
150150
dir_ = Dir.E if x2 == 0 else Dir.W
151-
logging.info("Trying %s -> %s", coord, dir_)
151+
_logger.info("Trying %s -> %s", coord, dir_)
152152
result = _try_one_enter(coord, dir_, map_, exit_cache)
153-
logging.info("Result %s -> %s = %d", coord, dir_, result)
153+
_logger.info("Result %s -> %s = %d", coord, dir_, result)
154154
results.append((coord, dir_, result))
155155

156156
results.sort(key=lambda r: r[2])

adventofcode/y2023/d19.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -291,9 +291,7 @@ def _possible_category_value_ranges(
291291

292292
def _construct_workflow_steps(workflow: _Workflow) -> list[_WorkflowStep]:
293293
result = list[_WorkflowStep]()
294-
failure_limits: dict[_Category, list[range] | None] = {
295-
cat: None for cat in _categories
296-
}
294+
failure_limits: dict[_Category, list[range] | None] = dict.fromkeys(_categories)
297295
for rule in workflow.rules:
298296
category_value_ranges = _category_value_ranges_from_rule(rule)
299297
applicable_category_value_ranges = _merge_category_value_ranges(
@@ -334,7 +332,7 @@ def p2(input_str: str) -> int:
334332
assert all(
335333
ranges is not None for ranges in step.category_value_ranges.values()
336334
)
337-
ranges = cast(dict[_Category, list[range]], step.category_value_ranges)
335+
ranges = cast("dict[_Category, list[range]]", step.category_value_ranges)
338336
accepted_category_value_ranges.append(ranges)
339337
continue
340338

adventofcode/y2023/d2.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
import logging
22
from collections.abc import Iterable
33

4+
_logger = logging.getLogger(__name__)
5+
46

57
def _parse_input(lines: Iterable[str]) -> Iterable[tuple[int, list[dict[str, int]]]]:
68
for line in lines:
79
g_id, rounds = line[5:].split(":")
8-
logging.debug("line=%s", line)
10+
_logger.debug("line=%s", line)
911

1012
yield (
1113
int(g_id),

adventofcode/y2023/d20.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def process_pulse(self, pulse: _Pulse) -> Iterator[_PulseNew]:
157157
yield from self._get_output_pulses(output_pulse_value)
158158

159159
def set_inputs(self, inputs: Iterable[_ModuleName]) -> None:
160-
self._state.update({name: _PulseLow for name in inputs})
160+
self._state.update(dict.fromkeys(inputs, _PulseLow))
161161

162162

163163
class _GatewayConjuction(_Conjunction):

adventofcode/y2023/d3.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
from attrs import Factory, define, field
55

6+
_logger = logging.getLogger(__name__)
7+
68

79
@define
810
class _InputNumber:
@@ -25,7 +27,7 @@ class _InputRow:
2527
def _parse_input(lines: Iterable[str]) -> list[_InputRow]:
2628
rows: list[_InputRow] = []
2729
for row_ind, line in enumerate(lines):
28-
logging.debug("%s: line=%s", row_ind, line)
30+
_logger.debug("%s: line=%s", row_ind, line)
2931
row = _InputRow()
3032

3133
number: str | None = None
@@ -50,7 +52,7 @@ def _parse_input(lines: Iterable[str]) -> list[_InputRow]:
5052
row.numbers.append(_InputNumber(number, len(line) - 1 - len(number)))
5153
number = None
5254

53-
logging.debug("%s: row=%s", row_ind, row)
55+
_logger.debug("%s: row=%s", row_ind, row)
5456
rows.append(row)
5557
return rows
5658

@@ -90,10 +92,10 @@ def is_adjacent(number: Number) -> bool:
9092
min(len(d), row_ind + 2),
9193
)
9294
if is_adjacent(number):
93-
logging.debug("input_number=%s. Adjacent", input_number)
95+
_logger.debug("input_number=%s. Adjacent", input_number)
9496
result += number.number
9597
else:
96-
logging.debug("input_number=%s. NOT adjacent", input_number)
98+
_logger.debug("input_number=%s. NOT adjacent", input_number)
9799

98100
return result
99101

adventofcode/y2023/d4.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,9 @@ def p2(input_str: str) -> int:
4242
matches = len(set(cards.winning) & set(cards.own))
4343
card_count = counts[cards.card_id]
4444
counts.update(
45-
{
46-
i: card_count
47-
for i in range(cards.card_id + 1, cards.card_id + 1 + matches)
48-
}
45+
dict.fromkeys(
46+
range(cards.card_id + 1, cards.card_id + 1 + matches), card_count
47+
)
4948
)
5049

5150
return sum(v for v in counts.values())

adventofcode/y2023/d5.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
from adventofcode.tooling.ranges import are_ranges_overlapping, partition_range
77

8+
_logger = logging.getLogger(__name__)
9+
810

911
@define
1012
class _RangeMap:
@@ -111,8 +113,8 @@ def get_destination(mappings: list[_RangeMap], source: int) -> int:
111113

112114
def p1(input_str: str) -> int:
113115
seeds, maps = _parse_input(input_str.splitlines())
114-
logging.debug("seeds=%s", seeds)
115-
logging.debug("maps=%s", maps)
116+
_logger.debug("seeds=%s", seeds)
117+
_logger.debug("maps=%s", maps)
116118

117119
return min(_get_location(maps, seed) for seed in seeds)
118120

adventofcode/y2023/d8.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
from attrs import define
77

8+
_logger = logging.getLogger(__name__)
9+
810

911
def _parse_input(lines: list[str]) -> tuple[str, list[tuple[str, tuple[str, str]]]]:
1012
directions = lines[0]
@@ -49,7 +51,7 @@ def _create_map_data(map_nodes_list: list[tuple[str, tuple[str, str]]]) -> _MapD
4951
locations_mapping = {
5052
location: index for index, (location, _) in enumerate(map_nodes_list)
5153
}
52-
logging.debug("locations_mapping=%s", locations_mapping)
54+
_logger.debug("locations_mapping=%s", locations_mapping)
5355

5456
def get_start_locations() -> Iterable[int]:
5557
for location, _ in map_nodes_list:
@@ -141,17 +143,17 @@ def _resolve_loop_length(
141143

142144
def p2(input_str: str) -> int:
143145
directions, map_nodes_list = _parse_input(input_str.splitlines())
144-
logging.debug("directions=%s", directions)
145-
logging.debug("map_nodes_list=%s", map_nodes_list)
146+
_logger.debug("directions=%s", directions)
147+
_logger.debug("map_nodes_list=%s", map_nodes_list)
146148

147149
map_data = _create_map_data(map_nodes_list)
148-
logging.debug("map_data=%s", map_data)
150+
_logger.debug("map_data=%s", map_data)
149151

150152
path_lengths = [
151153
_resolve_loop_length(start_location, directions, map_data)
152154
for start_location in map_data.start_locations
153155
]
154156

155-
logging.info("path_lengths=%s", path_lengths)
157+
_logger.info("path_lengths=%s", path_lengths)
156158

157159
return math.lcm(*path_lengths)

0 commit comments

Comments
 (0)