slow-fast-second-middle

Status: IN

For even-length lists, `middle_of_the_linked_list` returns the second middle node because the while condition checks `fast` before `fast.next`, causing `fast` to overshoot to `None`.

Source: entries/2026/06/06/middle-of-the-linked-list-solution.md

JSON