https://oj.leetcode.com/problems/add-two-numbers/
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.
Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Output: 7 -> 0 -> 8
'풀어본 Algorithm 문제 정리' 카테고리의 다른 글
[OJ.leetcode] binary-tree-preorder-traversal (1) | 2014.08.24 |
---|---|
[OJ.leetcode] maximum-depth-of-binary-tree (0) | 2014.08.23 |
[OJ.leetcode] search-in-rotated-sorted-array (0) | 2014.08.19 |
[OJ.leetcode] combinations (0) | 2014.08.18 |
[OJ.leetcode] sort-colors (1) | 2014.08.17 |