1.

Consider the following dynamic programming implementation of the edit distance problem. Which of the following lines should be added to complete the below code?

A. Arr[i-1][j] = min
B. Arr[i][j-1] = min
C. Arr[i-1][j-1] = min
D. Arr[i][j] = min
Answer» E.


Discussion

No Comment Found