String Similarity Score does not account adjacent character swaps. #17
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Adjacent character swaps is one the most common type of typing errors. For example; gihtub instead of github, or acron and acorn.
Normal levenshtien algorithm would see it as two operations to match source and target, where it is actually one operation of a swap. The algorithm should be adjusted/changed altogether to accommodate such cases.