21. Merge Two Sorted Lists
Problem Statement: You are given the heads of two sorted linked lists list1 and list2. Merge the two lists in a way that the resulting list is also sorted and return the head of the merged linked list. Examples: Input: list1 = [1,2,4], list2 = [1,3,4...




