Exemplo n.º 1
0
 def test2(self):
     self.assertTrue(check('внешний долг США over 9000'))
Exemplo n.º 2
0
 def test7(self):
     self.assertFalse(check('{а{ _ __ @{'))
Exemplo n.º 3
0
 def test1(self):
     self.assertTrue(check('Киркоров(антихайп)'))
Exemplo n.º 4
0
 def test6(self):
     self.assertFalse(check('({[)]'))
Exemplo n.º 5
0
 def test5(self):
     self.assertFalse(check('пРифФкИи [) >3'))
Exemplo n.º 6
0
 def test4(self):
     self.assertTrue(check('[(){{}()}]()'))
Exemplo n.º 7
0
 def test3(self):
     self.assertTrue(check('()[]{}'))
Exemplo n.º 8
0
from smile_logic import check

print('Introduce a line, and I will say: brackets are correctly placed or not')
read = input()
print(check(read))