We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.

This lesson's interactive features are locked, please to keep using them

Slow Edit Distance

At Mappy we allow users to type the name of their destination in a search box. Unfortunately, it is very rare that users type the exact name of the place they want to go. The edit distance algorithm will allow us to provide the location of the local "McDonald's" when someone types "mc donalds".

Let's start by building the slow version of the edit distance algorithm.

Assignment

Complete the edit_distance function.