The first half of this puzzle is complete! It provides one gold star: *

This commit is contained in:
Alexey Barabanov
2025-12-07 15:04:57 +03:00
parent 94f62c2fba
commit a7669325d9
4 changed files with 68 additions and 4 deletions

View File

@@ -1188,4 +1188,4 @@
434762117863204
449515177242474
147674010458552
197899192683549
197899192683549

View File

@@ -52,7 +52,6 @@ low_list, high_list = [], []
for item in range_list:
low_list.append(int(item[0]))
high_list.append(int(item[1]))
<<<<<<< HEAD
range_new_dict: list[int:int] = []
for low,high in zip(low_list, high_list):
@@ -86,5 +85,5 @@ result: int = 0
for item in final_range:
print(item[1] - item[0] + 1)
result += item[1] - item[0] + 1
# print(result)
print(final_range)
print(final_range)
print(result)