Leetcode – Merge Two Sorted Lists
Name: Merge Two Sorted ListsDifficulty: EasyDescription: Merge two linked lists in sorted order Example: Input: list1 = [1,2,4], list2 = [1,3,4] Output: [1,1,2,3,4,4] Input: list1 = [], list2 = [] Output: [] Input: list1 = [], list2 = [0] Output: [0] The excellent STL does all the hard work. I push the numbers from the […]