Delete 'TaskD03/run.py'

This commit is contained in:
Veronika Polevara 2023-12-10 22:05:28 +01:00
parent bcc5dd15cb
commit 24f8a1cceb
1 changed files with 0 additions and 14 deletions

View File

@ -1,14 +0,0 @@
import re
import sys
found_lines = []
for line in sys.stdin:
if re.search(r'\b19\d{2}\s*r\.\b|\b\W19\d{2}\s*r\.\b|\b19\d{2}\s*r\.\W', line, flags=re.IGNORECASE):
found_lines.append(line.strip())
if found_lines:
print('\n'.join(found_lines), end='')