Question: int findMaxValue ( int n ) { / / Read array input std::vector arr ( n ) ; for ( int i = 0 ;

int findMaxValue(int n){
// Read array input
std::vector arr(n);
for (int i =0; i < n; ++i){
std::cin >> arr[i];
}
// Count the number of operations
int operations =0;
while (!std::is_sorted(arr.begin(), arr.end())){
for (int i =0; i < n; ++i){
arr[i]= std::max(0, arr[i]-1);
}
operations++;
}
return operations; improve this code so that it passes all test cases

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!