You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
davhojt 512c167a49 docs(edit_distance): correct grammar 2 years ago
..
README.md docs(edit_distance): correct grammar 2 years ago

README.md

edit_distance

Instructions

Create a function named edit_distance, which calculates the minimum number of changes (insertions, deletions and/or substitutions) which are needed to transform the source string to the target string.

Expected Function

pub fn edit_distance(source: &str, target: &str) -> usize {
}

Usage

Here is a program to test your function.

use edit_distance::*;

fn main() {
	let source = "alignment";
	let target = "assignment";
	println!(
		"It's necessary to make {} change(s) to {}, to get {}",
		edit_distance(source, target),
		source,
		target
	);
}

And its output:

$ cargo run
It's necessary to make 2 change(s) to alignment, to get assignment
$

Notions

Edit Distance (Wikipedia)