From b3811ac6fe96b0c413a30d7a5cc33136cef5b1e8 Mon Sep 17 00:00:00 2001 From: Bartekfiolek Date: Fri, 24 Nov 2023 20:39:14 +0100 Subject: [PATCH] Fixes --- TaskC04/description.txt | 4 ++++ TaskC04/long.arg | 1 - TaskC04/simple1.arg | 1 - TaskC04/simple2.arg | 1 - 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/TaskC04/description.txt b/TaskC04/description.txt index 7edb59e..0e44dbb 100644 --- a/TaskC04/description.txt +++ b/TaskC04/description.txt @@ -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 diff --git a/TaskC04/long.arg b/TaskC04/long.arg index 2643dc5..15107e7 100644 --- a/TaskC04/long.arg +++ b/TaskC04/long.arg @@ -1,4 +1,3 @@ -# automat akceptuje dwa napisy - "aaaa" i "a" powielone 4038 razy 0 1 a 1 2 a 2 3 a diff --git a/TaskC04/simple1.arg b/TaskC04/simple1.arg index da827d3..f62f489 100644 --- a/TaskC04/simple1.arg +++ b/TaskC04/simple1.arg @@ -1,4 +1,3 @@ -# prosty automat akceptujący tylko napis "abc" 0 1 a 1 2 b 2 3 c diff --git a/TaskC04/simple2.arg b/TaskC04/simple2.arg index a832271..f429766 100644 --- a/TaskC04/simple2.arg +++ b/TaskC04/simple2.arg @@ -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