pub fn edit_distance(a: &str, b: &str, limit: usize) -> Option<usize>
Finds the edit distance between two strings.
Returns None if the distance exceeds the limit.
None