Distance between "abc", "abcde" is 2 but between "abcde", "abc" is 1
BryanKoo opened this issue · 1 comments
BryanKoo commented
I appreciate that this implementation is a great help with array calculation !
I checked distances with simple strings.
I am afraid that I have strange distance calculation results.
damerau_levenshtein_distance('abcde', 'abc') = 1
damerau_levenshtein_distance('abc', 'abcde') = 2
gfairchild commented