Skip to content

Instantly share code, notes, and snippets.

@ikaruce
ikaruce / add_two_numbers.java
Created May 31, 2021 14:38
LeetCode 2. Add Two Numbers
/**
* 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; }
* }
*/