linked-list-two-pointer-redirect-convergence

Status: IN

The two-pointer redirect trick guarantees convergence: each pointer traverses both lists (total `len(A) + len(B)` nodes), so they align at the intersection node or both reach `None` simultaneously if lists don't intersect.

Source: entries/2026/06/06/intersection-of-two-linked-lists-solution.md

JSON