This notebook was prepared by [Donne Martin](https://github.com/donnemartin). Source and license info is on [GitHub](https://github.com/donnemartin/interactive-coding-challenges).
Refer to the Solution Notebook. If you are stuck and need a hint, the solution notebook's algorithm discussion might be a good place to start.
In [ ]:
%run ../bst/bst.py
%load ../bst/bst.py
In [ ]:
def create_min_bst(array):
# TODO: Implement me
# Calls __create_min_bst__
pass
def __create_min_bst__(array, start, end):
# TODO: Implement me
pass
The following unit test is expected to fail until you solve the challenge.
In [ ]:
%run ../tree_height/height.py
In [ ]:
# %load test_bst_min.py
from nose.tools import assert_equal
class TestBstMin(object):
def test_bst_min(self):
array = [0, 1, 2, 3, 4, 5, 6]
root = create_min_bst(array)
assert_equal(height(root), 3)
array = [0, 1, 2, 3, 4, 5, 6, 7]
root = create_min_bst(array)
assert_equal(height(root), 4)
print('Success: test_bst_min')
def main():
test = TestBstMin()
test.test_bst_min()
if __name__ == '__main__':
main()
Review the Solution Notebook for a discussion on algorithms and code solutions.