There are three files in this repo. You will be implementing all three data structures.
- Stack
- Create a full implementation of a Stack (required methods are in the file)
- Write a function that takes in a string and returns the reversed string, using a stack.
- Queue
- Create a full implementation of a Queue (required methods are in the file)