forked from marcosfede/algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
valid_parenthesis.py
44 lines (35 loc) · 1.01 KB
/
valid_parenthesis.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
"""
Given a string containing just the characters
'(', ')', '{', '}', '[' and ']',
determine if the input string is valid.
The brackets must close in the correct order,
"()" and "()[]{}" are all valid but "(]" and "([)]" are not.
"""
import unittest
def is_valid(s: str) -> bool:
stack = []
dic = {")": "(",
"}": "{",
"]": "["}
for char in s:
if char in dic.values():
stack.append(char)
elif char in dic.keys():
if stack == []:
return False
s = stack.pop()
if dic[char] != s:
return False
return stack == []
class TestSuite(unittest.TestCase):
"""
test suite for the function (above)
"""
def test_is_valid(self):
self.assertTrue(is_valid("[]"))
self.assertTrue(is_valid("[]()[]"))
self.assertFalse(is_valid("[[[]]"))
self.assertTrue(is_valid("{([])}"))
self.assertFalse(is_valid("(}"))
if __name__ == "__main__":
unittest.main()