Leetcode 0021. Merge Two Sorted Lists

Posted on Sun 06 March 2022 in Leetcode • Tagged with linked-list

Question Link : https://leetcode.com/problems/merge-two-sorted-lists/

Difficulty: Easy

Question

You are given the heads of two sorted linked lists list1 and list2. Merge the two lists in a one sorted list. The list should be made by splicing together the nodes of the first two lists. Return the head …


Continue reading