mirror of
https://github.com/donnemartin/interactive-coding-challenges
synced 2026-01-13 12:58:02 +00:00
Added tree height challenge.
This commit is contained in:
25
graphs_trees/tree_height/test_height.py
Normal file
25
graphs_trees/tree_height/test_height.py
Normal file
@@ -0,0 +1,25 @@
|
||||
from __future__ import print_function
|
||||
from nose.tools import assert_equal
|
||||
|
||||
|
||||
class TestHeight(object):
|
||||
|
||||
def test_height(self):
|
||||
root = Node(5)
|
||||
assert_equal(height(root), 1)
|
||||
insert(root, 2)
|
||||
insert(root, 8)
|
||||
insert(root, 1)
|
||||
insert(root, 3)
|
||||
assert_equal(height(root), 3)
|
||||
|
||||
print('Success: test_height')
|
||||
|
||||
|
||||
def main():
|
||||
test = TestHeight()
|
||||
test.test_height()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
Reference in New Issue
Block a user