2. Add Two Numbers

两个链表求相加后的一条链表

Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)

Output: 7 -> 0 -> 8

Explanation: 342 + 465 = 807.

你可能感兴趣的:(2. Add Two Numbers)