Which of the following lines should be added to complete the above code?
arr[i-1][j] = min
arr[i][j-1] = min
arr[i-1][j-1] = min
arr[i][j] = min
Correct Answer: D — arr[i][j] = min
Explanation:
The line arr[i][j] = min completes the above code.