LeetCode MEDIUM 2 Add Two Numbers Summary
Generated by Codex with GPT-5
Quick facts
- Difficulty:
MEDIUM - Problem: Add Two Numbers
- Main tags:
Linked List,Math,Recursion
What the problem is really asking
Two linked lists represent two non-negative integers. Each node stores one digit, and the digits are already in reverse order, so the ones place comes first.
Continue ...