fn levenshtein_distance(a: &str, b: &str) -> usize
Expand description

Compute the Levenshtein distance between two strings. Borrowed from here.