5
5
from adventofcode .tooling .coordinates import X , Y
6
6
from adventofcode .tooling .map import IterDirection , Map2d
7
7
8
+ _logger = logging .getLogger (__name__ )
9
+
8
10
9
11
def _parse_maps (input_str : str ) -> Iterable [Map2d ]:
10
12
lines : list [list [str ]] = []
@@ -93,7 +95,7 @@ def _check_if_datas_around_reflection_match(
93
95
allowed_mismatches ,
94
96
)
95
97
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 )
97
99
return None
98
100
99
101
assert match_res >= 0
@@ -107,7 +109,7 @@ def _check_if_datas_around_reflection_match(
107
109
def _find_reflection_line (
108
110
map_ : Map2d , direction : IterDirection , required_mismatches : int = 0
109
111
) -> int | None :
110
- logging .debug (
112
+ _logger .debug (
111
113
"Searching for reflection with %d required mismatches" , required_mismatches
112
114
)
113
115
search_start_pos = 0
@@ -117,7 +119,7 @@ def _find_reflection_line(
117
119
map_ , search_start_pos , direction , remaining_mismatches
118
120
)
119
121
if found_data_info is None :
120
- logging .debug (
122
+ _logger .debug (
121
123
"No consecutive datas found with %d allowed mismatches" ,
122
124
remaining_mismatches ,
123
125
)
@@ -127,7 +129,7 @@ def _find_reflection_line(
127
129
search_start_pos = first_pos + 1
128
130
remaining_mismatches -= mismatches
129
131
130
- logging .debug (
132
+ _logger .debug (
131
133
"Found reflection at %d with %d mismatches remaining" ,
132
134
first_pos ,
133
135
remaining_mismatches ,
@@ -137,7 +139,7 @@ def _find_reflection_line(
137
139
map_ , first_pos , direction , remaining_mismatches
138
140
)
139
141
if check_res is None :
140
- logging .debug (
142
+ _logger .debug (
141
143
"Datas around reflection don't match with %d allowed mismatches" ,
142
144
remaining_mismatches ,
143
145
)
@@ -146,16 +148,16 @@ def _find_reflection_line(
146
148
remaining_mismatches -= check_res
147
149
assert remaining_mismatches >= 0
148
150
if remaining_mismatches > 0 :
149
- logging .debug ("Not enough mismatches" )
151
+ _logger .debug ("Not enough mismatches" )
150
152
continue
151
- logging .debug ("Found perfect reflection at %d" , first_pos )
153
+ _logger .debug ("Found perfect reflection at %d" , first_pos )
152
154
return first_pos
153
155
154
156
155
157
def _resolve (input_str : str , required_mismatches_per_map : int ) -> int :
156
158
result : int = 0
157
159
for map_counter , map_ in enumerate (_parse_maps (input_str ), 1 ):
158
- logging .info (
160
+ _logger .info (
159
161
"Map %2d: Size (LxC) %2d x %2d\n %s" ,
160
162
map_counter ,
161
163
map_ .height ,
@@ -178,7 +180,7 @@ def _resolve(input_str: str, required_mismatches_per_map: int) -> int:
178
180
179
181
map_result = (match_index + 1 ) * match_multiplier
180
182
result += map_result
181
- logging .info (
183
+ _logger .info (
182
184
"Map %2d: %s: %2d, map_result: %5d, result so far: %d" ,
183
185
map_counter ,
184
186
line_or_column ,
0 commit comments