Fixes
This commit is contained in:
parent
69ec0933db
commit
b3811ac6fe
@ -19,6 +19,10 @@ are no cycles with epsilon transition.
|
|||||||
Your program does not have to check whether the description is correct
|
Your program does not have to check whether the description is correct
|
||||||
and whether the automaton is deterministic.
|
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
|
POINTS: 3
|
||||||
DEADLINE: 2023-11-12 23:59:59
|
DEADLINE: 2023-11-12 23:59:59
|
||||||
REMAINDER: 0/3
|
REMAINDER: 0/3
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
# automat akceptuje dwa napisy - "aaaa" i "a" powielone 4038 razy
|
|
||||||
0 1 a
|
0 1 a
|
||||||
1 2 a
|
1 2 a
|
||||||
2 3 a
|
2 3 a
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
# prosty automat akceptujący tylko napis "abc"
|
|
||||||
0 1 a
|
0 1 a
|
||||||
1 2 b
|
1 2 b
|
||||||
2 3 c
|
2 3 c
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
# automat akceptujący napis "ab*c" (b powielony dowolną liczbę razy) i "kot"
|
|
||||||
0 1 a
|
0 1 a
|
||||||
1 1 b
|
1 1 b
|
||||||
1 2 c
|
1 2 c
|
||||||
|
Loading…
Reference in New Issue
Block a user