Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 209 Bytes

File metadata and controls

12 lines (7 loc) · 209 Bytes

Leetcode

Reverse a linked list from position m to n. Do it in one-pass.

Note: 1 ≤ m ≤ n ≤ length of list.

Example:

Input: 1->2->3->4->5->NULL, m = 2, n = 4 Output: 1->4->3->2->5->NULL

Solution