This commit is contained in:
Filip Gralinski 2021-01-26 08:31:20 +01:00
parent 999408b89e
commit 2c3ad65dba
2 changed files with 3 additions and 1 deletions

View File

@ -9,6 +9,8 @@ który akceptuje "Big NO!" tj. napisy typu "NOO...OO!", gdzie "O"
powtarza się przynajmniej 5 razy (zob. powtarza się przynajmniej 5 razy (zob.
http://tvtropes.org/pmwiki/pmwiki.php/Main/BigNo). http://tvtropes.org/pmwiki/pmwiki.php/Main/BigNo).
NAME: big_no_automaton NAME: big_no_automaton
PARAMS: - PARAMS: -
RETURN: DeterministicAutomaton RETURN: DeterministicAutomaton

View File

@ -25,7 +25,7 @@ class Task322Test(unittest.TestCase):
"""Podstawowy test.""" """Podstawowy test."""
self.assertTrue(is_temperature("-9")) self.assertTrue(is_temperature("-9"))
self.assertFalse(is_temperature("7")) self.assertTrue(is_temperature("7"))
self.assertFalse(is_temperature("-200")) self.assertFalse(is_temperature("-200"))
self.assertTrue(is_temperature("-21")) self.assertTrue(is_temperature("-21"))
self.assertTrue(is_temperature("18")) self.assertTrue(is_temperature("18"))