This folder contains two different ways to implement Linked list
- the first in main.c relies on recusion.
- the second in list.c relies on loops and adding another data structure called list to hold list related data, like list head and size.
- practice problems