Challenge: Edit Distance

Solve the Edit Distance Problem.

We'll cover the following...

Problem


Edit Distance Problem

Compute the edit distance between two strings.

Input: Two strings.

Output: The minimum number of single symbol insertions, deletions, and substitutions to transform one string into the other one.


The Edit Distance Problem has many applications in computational biology, natural language processing, spell-checking, etc. For example, biologists often analyze edit distances when they search for disease-causing mutations.

The edit distance between two strings is defined as the minimum number of single-symbol insertions\color{blue}\text{insertions}, deletions\color{green}\text{deletions}, and ...