From bf7cff3f0f67d8c04bc218970458810f8814d361 Mon Sep 17 00:00:00 2001 From: Grzegorz Rogozik Date: Sat, 25 Jan 2020 08:56:06 +0100 Subject: [PATCH] add coment --- automata/.idea/workspace.xml | 248 +++++++++++++++++++++++++++++++++++ automata/Task201.py | 5 + 2 files changed, 253 insertions(+) create mode 100644 automata/.idea/workspace.xml diff --git a/automata/.idea/workspace.xml b/automata/.idea/workspace.xml new file mode 100644 index 0000000..9ef6dd8 --- /dev/null +++ b/automata/.idea/workspace.xml @@ -0,0 +1,248 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/automata/Task201.py b/automata/Task201.py index a5bce26..8731382 100644 --- a/automata/Task201.py +++ b/automata/Task201.py @@ -1,5 +1,10 @@ #!/usr/bin/python # -*- coding: utf-8 -*- +""" +Rozwiązanie zadania 201 +""" + + def is_initial_state_a_final_one(automaton): return automaton.is_final_state(automaton.get_initial_state()) \ No newline at end of file