Join the first half and the reversed second half of a list into one list.
Constraints
Example
>>> reorder_list([1, 2, 3, 4, 5, 6]) [1, 2, 3, 6, 5, 4] >>> reorder_list([1, 2, 3, 4, 5]) [1, 2, 5, 4, 3] >>> reorder_list([]) [] >>> reorder_list([1]) [1]
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints