LeetCode MEDIUM 143 Reorder List Summary
Generated by Codex with GPT 5.6 Sol XHigh
Quick facts
- Difficulty:
MEDIUM - Problem: Reorder List
- Topics:
Linked List,Two Pointers,Stack,Recursion
Problem gist
The input is a singly linked list in its ordinary front-to-back order:
L0 → L1 → L2 → ... → Ln
It must be rearranged by alternating nodes from the front and back:
Continue ...