Mental Model
Count how many nodes are in the linked list by moving from the start to the end one by one.
Analogy: Like counting people standing in a line by walking from the first person to the last and counting each one.
head -> [1] -> [2] -> [3] -> null
