| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/feixiangcode/algorithm/master/Week_01/id_151/LeetCode_21_151.java | [Back] [Original] |
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
ListNode dummyHead = new ListNode(-1);
ListNode curr = dummyHead, p = l1, q = l2;
while(p != null && q != null) {
if(p.val
| Web Proxy Viewer | New URL | Original Page |