logo
pub fn levenshtein_distance_naive(source: &str, target: &str) -> usize
Expand description

Naïvely calculate Levenshtein distance using the whole distance matrix to store information for all substrings.