jnxfzybt
This commit is contained in:
@@ -45,7 +45,7 @@ for item in range_list:
|
|||||||
low_list.append(int(item[0]))
|
low_list.append(int(item[0]))
|
||||||
high_list.append(int(item[1]))
|
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):
|
for low,high in zip(low_list, high_list):
|
||||||
range_new_dict[int(high)] = int(low)
|
range_new_dict[int(high)] = int(low)
|
||||||
high_list = sorted(high_list, reverse=True)
|
high_list = sorted(high_list, reverse=True)
|
||||||
|
|||||||
Reference in New Issue
Block a user