LeetCode 1800. Maximum Ascending Subarray Sum
Input: nums = [10,20,30,5,10,50]
Output: 65
Explanation: [5,10,50] is the ascending subarray with the maximum sum of 65.Input: nums = [10,20,30,40,50]
Output: 150
Explanation: [10,20,30,40,50] is the ascending subarray with the maximum sum of 150.Input: nums = [12,17,15,13,10,11,12]
Output: 33
Explanation: [10,11,12] is the ascending subarray with the maximum sum of 33.Input: nums = [100,10,1]
Output: 100Solution
PreviousLeetCode 1799. Maximize Score After N OperationsNextLeetCode 1801. Number of Orders in the Backlog
Last updated