Software Engineering
Mid
programming
LeetCode #2 - Add Two Numbers\nYou are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contains a single digit. Add the two numbers and return it as a linked list.\n\n### Input/Output\n\n**Input:**\n(2 -> 4 -> 3) + (5 -> 6 -> 4)\n\n**Output:**\n(7 -> 0 -> 8)\n\n### Constraints\n- The number of nodes in each linked list is in the range [1, 100].\n- 0 <= Node.val <= 9.\n- It is guaranteed that the list represents a valid number.
Suggested Answer