Maximum Width Ramp
Try to solve the Maximum Width Ramp problem.
We'll cover the following...
Statement
A ramp in an integer array nums is defined as a pair of indices (i, j) such that i < j and nums[i] <= nums[j]. The width of such a ramp is j - i. ...