Skip to content

Instantly share code, notes, and snippets.

@anirban99
Created March 8, 2023 16:22
Show Gist options
  • Select an option

  • Save anirban99/3f908e8b9ad737c06898c02f623d379f to your computer and use it in GitHub Desktop.

Select an option

Save anirban99/3f908e8b9ad737c06898c02f623d379f to your computer and use it in GitHub Desktop.
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
ListNode prev = new ListNode();
ListNode curr = prev;
while(list1 != null && list2 != null){
if(list1.val < list2.val){
curr.next = list1;
list1 = list1.next;
} else {
curr.next = list2;
list2 = list2.next;
}
curr = curr.next; //move the curr pointer forward
}
if(list1 != null) {
curr.next = list1;
} else {
curr.next = list2;
}
return prev.next;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment