Question: In a language of your choice, please write a function that will output the indices of the two consecutive elements that have the highest max
In a language of your choice, please write a function that will output the indices of the two consecutive elements that have the highest max sum in an input array of integers (e.g., maxPair([0, 5, 5, 2]) will return (1, 2)). In the case of a tie, the method should return the leftmost pair (e.g., maxPair([0, 4, 3, 1, 2, 3, 4, 0]) will return (1, 2)).
At the top of your answer, please name the language you chose.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
