Last active
April 26, 2019 23:53
-
-
Save yefim/5714206909d02e93127d to your computer and use it in GitHub Desktop.
Levenshtein distance implementation in JavaScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const editDistance = (a, b) => { | |
if (a === '' || b === '') { | |
return Math.max(a.length, b.length); | |
} | |
return (a[0] === b[0] ? 0 : 1) + Math.min( | |
editDistance(a.substring(1), b.substring(1)), | |
editDistance(a.substring(1), b), | |
editDistance(a, b.substring(1)) | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment