Data Structure Series - Stacks
This article gives a brief introduction of implementing stacks in Go language.
We will be doing the 3 basic operations related to stacks:
Push: Inserts an element to the top of the stack
Pop: Removes an element from the top of the stack, throws ...
prog-bytes.hashnode.dev2 min read