@@ -0,0 +1,9 @@
with open("input", "r") as f:
lines = f.read().splitlines()
ranges = []
for line in lines:
if "-" in line:
start, end = line.split("-")
ranges.append((int(start), int(end)))
The note is not visible to the blocked user.