From 369b065e85f3b58497a57ca2d3defc279d3f18b9 Mon Sep 17 00:00:00 2001 From: Alexey Barabanov Date: Fri, 5 Dec 2025 20:45:12 +0300 Subject: [PATCH] jnxfzybt --- 2025/day05/part2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2025/day05/part2.py b/2025/day05/part2.py index cf83668..9a36c97 100644 --- a/2025/day05/part2.py +++ b/2025/day05/part2.py @@ -45,7 +45,7 @@ for item in range_list: low_list.append(int(item[0])) high_list.append(int(item[1])) -range_new_dict: dict[int:int] = {} +range_new_dict: dict[int,int] = {} for low,high in zip(low_list, high_list): range_new_dict[int(high)] = int(low) high_list = sorted(high_list, reverse=True)