mirror of
https://github.com/donnemartin/interactive-coding-challenges
synced 2026-01-09 10:58:02 +00:00
Fix #13, PEP8-ify notebooks.
This commit is contained in:
@@ -2,7 +2,7 @@ from nose.tools import assert_equal
|
||||
|
||||
|
||||
class TestDeleteNode(object):
|
||||
|
||||
|
||||
def test_delete_node(self):
|
||||
print('Test: Empty list, null node to delete')
|
||||
linked_list = MyLinkedList(None)
|
||||
@@ -16,19 +16,21 @@ class TestDeleteNode(object):
|
||||
assert_equal(linked_list.get_all_data(), [None])
|
||||
|
||||
print('Test: Multiple nodes')
|
||||
linked_list = MyLinkedList(None)
|
||||
linked_list = MyLinkedList(None)
|
||||
node0 = linked_list.insert_to_front(1)
|
||||
node1 = linked_list.insert_to_front(3)
|
||||
node2 = linked_list.insert_to_front(4)
|
||||
node3 = linked_list.insert_to_front(1)
|
||||
linked_list.delete_node(node2)
|
||||
assert_equal(linked_list.get_all_data(), [1, 3, 1])
|
||||
|
||||
|
||||
print('Success: test_delete_node')
|
||||
|
||||
|
||||
def main():
|
||||
test = TestDeleteNode()
|
||||
test.test_delete_node()
|
||||
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
Reference in New Issue
Block a user