Concept Flow - Insert at End Tail Insert
Create new node with data
Is list empty?
Set head = new_node
Traverse until current.next == None
Set current.next = new_node
Done
Create a new node, check if list is empty, if yes set head to new node; else traverse to last node and link new node at end.