143.Reorder List (M)
https://leetcode.com/problems/reorder-list/
1.Description(Medium)
L0 → L1 → … → Ln - 1 → LnL0 → Ln → L1 → Ln - 1 → L2 → Ln - 2 → …Input: head = [1,2,3,4]
Output: [1,4,2,3]Input: head = [1,2,3,4,5]
Output: [1,5,2,4,3]2.Code
Last updated

