Skip to content

Instantly share code, notes, and snippets.

@yefim
Last active April 26, 2019 23:53
Show Gist options
  • Save yefim/5714206909d02e93127d to your computer and use it in GitHub Desktop.
Save yefim/5714206909d02e93127d to your computer and use it in GitHub Desktop.
Levenshtein distance implementation in JavaScript
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