Please answer in psuedo code only no code Consider an array
Please answer in psuedo code only, no code
Consider an array of numbers. Give an algorithm that finds the maximum contiguous subarray that is increasing.Solution
Initialize the array
Max = 0
Max_end=0
For going through each element of the array
Return max;
