JuniorArray

Maximum Difference Between Increasing Elements

Given a 0-indexed integer array nums of size n, find the maximum difference between nums[i] and nums[j] (that is, nums[j] - nums[i]), such that 0 <= i < j < n and nums[i] < nums[j].

Return the maximum difference. If no such i and j exists, return -1.

Example 1
Inputnums = [7,1,5,4]
Output4
The maximum difference occurs with i = 1 and j = 2, where nums[j] - nums[i] = 5 - 1 = 4; using i = 1 and j = 0 is invalid because i > j.
Example 2
Inputnums = [9,4,3,2]
Output-1
There is no i and j such that i < j and nums[i] < nums[j].

Constraints

  • n == nums.length
  • 2 <= n <= 1000
  • 1 <= nums[i] <= 10^9

Asked at 5 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate