-
Notifications
You must be signed in to change notification settings - Fork 0
/
braceMatching.py
65 lines (48 loc) · 1.38 KB
/
braceMatching.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import unittest
def opener(ch):
l = ['{','[','(']
if ch in l:
return True
return False
#returns true if not matched close {/[/(
def bad(item,ch):
if (ch == ']' and item == '[' )or (ch == ')' and item == '(' ) or (ch == '}' and item == '{' ) :
return False
return True
def is_valid(code):
# Determine if the input code is valid
stack = []
for ch in code:
if opener(ch) :
stack.append(ch)
else :
if not stack :
return False
item = stack.pop()
if bad(item, ch):
return False
if not stack :
return True
else:
return False
# Tests
class Test(unittest.TestCase):
def test_valid_short_code(self):
result = is_valid('()')
self.assertTrue(result)
def test_valid_longer_code(self):
result = is_valid('([]{[]})[]{{}()}')
self.assertTrue(result)
def test_mismatched_opener_and_closer(self):
result = is_valid('([][]}')
self.assertFalse(result)
def test_missing_closer(self):
result = is_valid('[[]()')
self.assertFalse(result)
def test_extra_closer(self):
result = is_valid('[[]]())')
self.assertFalse(result)
def test_empty_string(self):
result = is_valid('')
self.assertTrue(result)
unittest.main(verbosity=2)