data-structures-and-algorithms

Challenge Title

Using a Linked List as the underlying data storage mechanism, implement both a Stack and a Queue

Solution

  1. queue.py
  2. stack.py

tests

  1. test_queue.py
  2. test_stack.py