This is a live video of solving a Java coding challenge - Implement a stack data structure using an Array.
A stack is LIFO data structure.
The operations that we will implement as part of the exercise are:
push - add an element onto the stack
pop - remove the last element from the stack
peek - return the last element from the stack without removing it