Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 208 Bytes

README.md

File metadata and controls

8 lines (6 loc) · 208 Bytes

Levenshtein Distance

A rust implementation of the levenshtein distance algorithm.

use levenshtein_distance::levenshtein_distance;
assert_eq!(levenshtein_distance("playwright", "playright"), 1);