Feb. 16, 2014, 8:43 p.m. by Rosalind Team
In 1966, Vladimir Levenshtein introduced the notion of the edit distance between two strings as the minimum number of edit operations needed to transform one string into another. Here, an edit operation is the insertion, deletion, or substitution of a single symbol. For example, TGCATAT can be transformed into ATCCGAT with five edit operations, implying that the edit distance between these strings is at most 5.
Find the edit distance between two strings.
Given: Two amino acid strings.
Return: The edit distance between these strings.
PLEASANTLY MEANLY
5