both-reversal-variants-mutate-in-place

Status: IN

Neither `reverse_list` nor `reverse_list_recursive` creates new `ListNode` instances; they rewire existing `.next` pointers, meaning the original head's `.next` is `None` after reversal.

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

JSON