30:00
Given two non-empty linked lists representing two non-negative integers stored in reverse order, add them and return the sum as a linked list.
The number of nodes in each list is in the range [1,100][1, 100][1,100].
0≤Node.val≤90 \leq \text{Node.val} \leq 90≤Node.val≤9
Each number does not contain leading zeros, except the number 000 itself.