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.