Solution: Rearrange Sorted List in Max/Min Form
Let’s solve the Rearrange Sorted List in Max/Min Form problem.
We'll cover the following...
We'll cover the following...
Statement
We're given a sorted list, nums, containing positive integers only. We have to rearrange the list so that when returned, the
In the end, we’ll have the largest remaining numbers in descending order and the smallest in ascending order at even and odd positions, respectively.
Constraints:
nums.length...