Data Structures(SingleLinkedList)
Creating a list using SLL.Has a PUSH to insert a element
Count to count the elements on a list
Pop to get the last element of a list and remove it
Unshift to get the first element of a list and remove it
Remove to find a matching element and remove it
And Get to find and return a element depending of the position it has on the list