mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-12-26 23:21:18 +08:00
Merge branch 'master' of https://github.com/trekhleb/javascript-algorithms
This commit is contained in:
commit
f696d028ba
@ -8,7 +8,7 @@ export default function levenshteinDistance(a, b) {
|
||||
// substrings of a to substrings of b.
|
||||
const distanceMatrix = Array(b.length + 1).fill(null).map(() => Array(a.length + 1).fill(null));
|
||||
|
||||
// Fill the first raw of the matrix.
|
||||
// Fill the first row of the matrix.
|
||||
// If this is first row then we're transforming empty string to a.
|
||||
// In this case the number of transformations equals to size of a substring.
|
||||
for (let i = 0; i <= a.length; i += 1) {
|
||||
|
Loading…
Reference in New Issue
Block a user