This commit is contained in:
Kijowski Michał 2020-12-06 00:47:49 +01:00
parent 578b11af9c
commit ea189d6428
2 changed files with 12 additions and 0 deletions

0
TaskD04/Makefile Normal file
View File

12
TaskD04/run Executable file
View File

@ -0,0 +1,12 @@
#!/usr/bin/python3
import sys
import re
for input in sys.stdin.readlines():
answer = re.sub('(([\D]*[\d]+[\D]+)[\d]+(.*$))', '\\2\\3',input)
if answer:
print(answer[:-1])
else:
print(input[:-1])