Easy
You are given the heads of two sorted linked lists l1 and l2. Splice them into one sorted list and return its head.
l1
l2
Input: l1 = [1,2,4], l2 = [1,3,4] Output: [1,1,2,3,4,4]
Input: l1 = [], l2 = [0] Output: [0]