Special Linked List

Linked-List Contest Easy

Given the head of Linked List and an integer val, partition the list as a special Linked List.


A special linked list is one in which all nodes with values less than val come before all nodes equal to or greater than val. You have to keep the relative ordering of the nodes within the partition the same as the initial list.

Constraints

  • 1 <= Number of Nodes in the Linked List <= 105
  • -104 <= ListNode.val <= 104
  • -104 <= val <= 104

Company Tags

[ ]