Problem
You are given two non-empty linked lists representing two non-negative integers. 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.
You may assume the two numbers do not contain any leading zero, except the number 0 itself.
Example
1 | Input: (2 -> 4 -> 3) + (5 -> 6 -> 4) |
Solution1
Method: Iterative
Time Complexity: O(|m| + |n|)
Space Complexity: O(|m|) if |m| > |n| else O(|n|)
1 | # Definition for singly-linked list. |
or
1 | class Solution: |
Solution2
Method: Iterative
Time Complexity: O(|m| + |n|)
Space Complexity: O(|m| + |n|)
1 | def addTwoNumbers(self, l1, l2): |
Built-in
divmod(a, b)
Take two (non complex) numbers as arguments and return a pair of numbers consisting of their quotient and remainder when using integer division. With mixed operand types, the rules for binary arithmetic operators apply. For integers, the result is the same as (a // b, a % b). For floating point numbers the result is (q, a % b), where q is usually math.floor(a / b) but may be 1 less than that. In any case q * b + a % b is very close to a, if a % b is non-zero it has the same sign as b, and 0 <= abs(a % b) < abs(b).