palindrome-ll-p2-terminates-comparison

Status: IN

The comparison loop iterates until `p2` (reversed second half) is `None`, not `p1`, because the reversed half is always <= the first half in length (middle node stays with first half for odd-length lists)

Source: entries/2026/06/06/palindrome-linked-list-solution.md

JSON