Skip to content

Instantly share code, notes, and snippets.

View lastgleam's full-sized avatar
✈️

Donghee Kim lastgleam

✈️
View GitHub Profile
@lastgleam
lastgleam / add-two-numbers.js
Last active February 17, 2019 12:43
LeetCode : Add Two Numbers
/**
* Definition for singly-linked list.
* function ListNode(val) {
* this.val = val;
* this.next = null;
* }
*/
/**
* @param {ListNode} l1
* @param {ListNode} l2