Edit Distance
Create a function that accepts two strings and returns the minimum number of operations needed to transform one. The operations are: insert, delete, and replace.
Example
Input: "kitten", "sitting"
Output: 3
Create a function that accepts two strings and returns the minimum number of operations needed to transform one. The operations are: insert, delete, and replace.
Input: "kitten", "sitting"
Output: 3