JuniorArray

Maximum Ascending Subarray Sum

Given an array of positive integers nums, return the maximum possible sum of a strictly increasing subarray in nums.

A subarray is defined as a contiguous sequence of numbers in an array.

Example 1
Inputnums = [10,20,30,5,10,50]
Output65
[5, 10, 50] is the ascending subarray with the maximum sum of 65.
Example 2
Inputnums = [10,20,30,40,50]
Output150
[10, 20, 30, 40, 50] is the ascending subarray with the maximum sum of 150.

Constraints

  • 1 <= nums.length <= 100
  • 1 <= nums[i] <= 100

Asked at 6 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