#273: Remove nose dependency for linked_lists/ (#275)

This commit is contained in:
Donne Martin
2020-07-06 21:09:04 -04:00
committed by GitHub
parent b598f474af
commit 0e7ed80228
25 changed files with 283 additions and 383 deletions

View File

@@ -95,4 +95,4 @@ class LinkedList(object):
while curr_node is not None:
data.append(curr_node.data)
curr_node = curr_node.next
return data
return data