35 lines
717 B
Python
35 lines
717 B
Python
import re
|
|
|
|
file_name: str = "simple"
|
|
|
|
|
|
def find_dates_1900_to_1999(text):
|
|
pattern = re.compile(r"19\d{2} r\.", re.IGNORECASE)
|
|
|
|
lines = text.split("\n")
|
|
|
|
date_lines = [line for line in lines if re.search(pattern, line)]
|
|
|
|
return date_lines
|
|
|
|
|
|
with open(file_name + ".in", "r", newline="", encoding="utf8") as file:
|
|
text = file.read()
|
|
|
|
with open(file_name + ".exp", "r", newline="", encoding="utf8") as file:
|
|
expected = [line.rstrip() for line in file.readlines()]
|
|
|
|
|
|
found_lines = find_dates_1900_to_1999(text)
|
|
|
|
mistake = False
|
|
for line in expected:
|
|
if line in found_lines:
|
|
print(f"{line}")
|
|
else:
|
|
print(f"NO: {line}")
|
|
mistake = True
|
|
|
|
if mistake:
|
|
print("ERROR")
|