This commit is contained in:
Alexey Barabanov
2025-12-05 20:45:12 +03:00
parent ec30800900
commit 369b065e85

View File

@@ -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)