leetcode 21.MergeTwoLists题目:Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.1234Example:Input: 1->2->4, 1->3->4Output: 1 2018-12-27 leetcode 算法 Array LinkedList