Mental Model
A palindrome reads the same forwards and backwards. We check if the first and last characters match, then move inward.
Analogy: Like checking if a word on a mirror looks the same from both sides, comparing letters from outside to inside.
string: h -> e -> l -> l -> o -> null indexes: [0] -> [1] -> [2] -> [3] -> [4]
