445 Add Two Numbers II
445. Add Two Numbers II
1. Question
You are given two non-empty linked lists representing two non-negative integers. The most significant digit comes first and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.
You may assume the two numbers do not contain any leading zero, except the number 0 itself.
Follow up: What if you cannot modify the input lists? In other words, reversing the lists is not allowed.
Example:
2. Implementation
3. Time & Space Complexity
时间复杂度O(m + n), m是第一个list的长度, n是第二个list的长度,空间复杂度O(1)
Last updated