2024-11-01 13:57:56 +01:00
|
|
|
import sys
|
|
|
|
|
2024-11-01 16:28:16 +01:00
|
|
|
# detect numbers. separate numbers by spaces
|
|
|
|
def solve(lines):
|
|
|
|
res = []
|
|
|
|
|
|
|
|
j = 0
|
2024-11-01 13:57:56 +01:00
|
|
|
for l in lines:
|
|
|
|
numbers = []
|
2024-11-01 16:28:16 +01:00
|
|
|
for i in range(len(l)):
|
|
|
|
c = l[i]
|
|
|
|
|
|
|
|
if j > 0 and not c.isdigit():
|
|
|
|
numbers.append(l[i-j:i])
|
|
|
|
j = j+1 if (c.isdigit() and c.isascii()) else 0
|
2024-11-01 13:57:56 +01:00
|
|
|
|
2024-11-01 16:28:16 +01:00
|
|
|
if numbers:
|
|
|
|
res.append(' '.join(numbers))
|
|
|
|
return '\n'.join(res)
|
2024-11-01 13:57:56 +01:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
lines = []
|
|
|
|
|
|
|
|
fp = sys.argv[1]
|
2024-11-01 16:28:16 +01:00
|
|
|
with open(fp, encoding="utf-8") as f:
|
2024-11-01 13:57:56 +01:00
|
|
|
lines = f.readlines()
|
|
|
|
sol = solve(lines)
|
|
|
|
with open("./polish_wiki_excerpt.out", 'w', encoding="utf-8") as f:
|
2024-11-01 16:28:16 +01:00
|
|
|
f.writelines(sol)
|
|
|
|
f.write('\n') # it expects for file to end with newline :)
|