Delete 'TaskD02/run.py'

This commit is contained in:
Veronika Polevara 2023-12-10 22:04:40 +01:00
parent 6ecd654dea
commit eece10e455
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
import re
import sys
found_lines = []
for line in sys.stdin:
if re.search(r'\b\s*pies\s*\b', line, flags=re.IGNORECASE):
found_lines.append(line.strip())
if found_lines:
print('\n'.join(found_lines), end='')