Mental Model
Each linked list holds a number in reverse order, and we add digits one by one like elementary addition with carry.
Analogy: Imagine adding two numbers digit by digit from right to left, just like adding two numbers on paper starting from the units place.
List1: 2 -> 4 -> 3 -> null List2: 5 -> 6 -> 4 -> null Each node holds one digit, starting from the smallest place value.