Which of the following lines should be inserted to complete the above code?
arr[i][j] = min
(min = arr[i-1][j-1] - 1);
min = arr[i-1][j-1].
(min = arr[i-1][j-1] + 1);
Correct Answer: C — min = arr[i-1][j-1].
Explanation:
The line min = arr[i-1][j-1] completes the above code.