-
-
Save anirban99/3f908e8b9ad737c06898c02f623d379f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 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