This commit is contained in:
Bartekfiolek 2023-11-24 20:39:14 +01:00
parent 69ec0933db
commit b3811ac6fe
4 changed files with 4 additions and 3 deletions

View File

@ -19,6 +19,10 @@ are no cycles with epsilon transition.
Your program does not have to check whether the description is correct
and whether the automaton is deterministic.
long.arg - this automaton accepts two texts - "aaaa" and "a" replicated 4038 times.
simple1.arg - simple automaton accepting only text "abc"
simple2.arg - automaton accepting text "ab*c" (b replicated any number of times) and "kot"
POINTS: 3
DEADLINE: 2023-11-12 23:59:59
REMAINDER: 0/3

View File

@ -1,4 +1,3 @@
# automat akceptuje dwa napisy - "aaaa" i "a" powielone 4038 razy
0 1 a
1 2 a
2 3 a

View File

@ -1,4 +1,3 @@
# prosty automat akceptujący tylko napis "abc"
0 1 a
1 2 b
2 3 c

View File

@ -1,4 +1,3 @@
# automat akceptujący napis "ab*c" (b powielony dowolną liczbę razy) i "kot"
0 1 a
1 1 b
1 2 c