mirror of
https://github.com/donnemartin/interactive-coding-challenges
synced 2026-01-09 02:48:02 +00:00
Simpilfied breadth first search challenge.
This commit is contained in:
@@ -5,14 +5,14 @@ from nose.tools import assert_equal
|
||||
class TestBfs(object):
|
||||
|
||||
def test_bfs(self):
|
||||
root = Node(5)
|
||||
root.insert(2)
|
||||
root.insert(8)
|
||||
root.insert(1)
|
||||
root.insert(3)
|
||||
node = Node(5)
|
||||
insert(node, 2)
|
||||
insert(node, 8)
|
||||
insert(node, 1)
|
||||
insert(node, 3)
|
||||
|
||||
with captured_output() as (out, err):
|
||||
root.bfs(sys.stdout.write)
|
||||
bfs(node, sys.stdout.write)
|
||||
assert_equal(out.getvalue().strip(), '52813')
|
||||
|
||||
print('Success: test_bfs')
|
||||
|
||||
Reference in New Issue
Block a user