-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_solver.py
43 lines (34 loc) · 1.17 KB
/
test_solver.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
import unittest
from solver import Node, full_binary_tree
class TestSolver(unittest.TestCase):
def test_full_binary_tree(self):
# 1 1
# / \ / \
# 2 3 ----> 0 3
# / / \ / \
# 0 9 4 9 4
root = Node(1, Node(2, Node(0)), Node(3, Node(9), Node(4)))
expected_str_output = "1\n03\n94"
self.assertEqual(str(full_binary_tree(root)), expected_str_output)
# 1 1
# / \ / \
# 3 2 ----> 3 4
# / \ \ / \
# 0 9 4 0 9
root = Node(1, Node(3, Node(0), Node(9)), Node(2, right=Node(4)))
expected_str_output = "1\n34\n09"
self.assertEqual(str(full_binary_tree(root)), expected_str_output)
# 1 3
# / ---->
# 3
root = Node(1, Node(3))
expected_str_output = "3"
self.assertEqual(str(full_binary_tree(root)), expected_str_output)
# 1 3
# \ ---->
# 3
root = Node(1, right=Node(3))
expected_str_output = "3"
self.assertEqual(str(full_binary_tree(root)), expected_str_output)
if __name__ == "__main__":
unittest.main()