Merge two sorted linked lists and return it as a sorted new list.
list1 = [1,2,4], list2 = [1,3,4]
[1,1,2,3,4,4]
list1 = [], list2 = []
[]