
Welcome to this post.
This is going to be a series post about data structure and algorithm, In this series, I use kotlin as a default language.
Let's start with stack data structure-
Stack is a simple data structure.
The implementation of this data structure is also called LIFO that means Last in Fast out.
Basically, in this data structure, the last data will come in first.
Src: Wikipedia
In...