This commit is contained in:
Eryk Miszczuk 2019-11-05 15:03:27 +01:00
parent ac50e8f1b7
commit 203cef8cca
2 changed files with 21 additions and 0 deletions

2
TaskX04/run Normal file
View File

@ -0,0 +1,2 @@
#!/bin/bash
python TaskX04/run.py "$@"

19
TaskX04/run.py Normal file
View File

@ -0,0 +1,19 @@
import sys
import re
commentPattern = re.compile('^#.*')
automataStepPattern = re.compile(r'[0-9]+ [0-9]+ [A-Za-z]+( ([0-9]+\.[0-9]+)|)')
#print("First argument: ", sys.argv[0])
steps = 0
for line in sys.stdin:
line = line.replace('\n', '')
if commentPattern.match(line):
continue
if automataStepPattern.match(line):
steps += 1
print(steps)