Merge two sorted linked lists and return it as a sorted list. The list should be made by splicing together the nodes of the first two lists. 두개의 정렬된 연결 리스트를 합치고, 이를 정렬된 리스트로 반환해라. 이 리스트는 처음 2개의 리스트의 노드들을 함께 잘라이어 만들어라. Example 1: Constraints: The number of nodes in both lists is in the range [0, 50]. -100