Let's test your knowledge. Is this statement true or false?
Suppose we're trying to find the edit distance
of two strings, string A = "milk"
and string B = "melt"
.
When comparing the character of string A at index 0, and string B at index 0, no edit is neeed so we should not add 1
to our running distance.
However, at index 1 for the two strings, we want to add 1
to account for I
and E
.
Press true if you believe the statement is correct, or false otherwise.